blob: f016fc7623ce49072762ba805774adba4828f994 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#
# /usr/share/php-select/php-devel.sh
# Module to manage PHP development scripts
#
# Written for Gentoo Linux
#
# Author Stuart Herbert
# (stuart@gentoo.org)
#
# Copyright (c) 2005 Gentoo Foundation, Inc.
# Released under version 2 of the GNU General Public License
#
# ========================================================================
G_SYMLINK_SOURCE[0]="bin/php-config"
G_SYMLINK_TARGET[0]="/usr/bin/php-config"
G_SYMLINK_SOURCE[1]="bin/phpize"
G_SYMLINK_TARGET[1]="/usr/bin/phpize"
. $G_MODULE_PATH/libsymlink.sh
|