Makefile cleanup (lang section)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@5353 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@ -325,24 +325,24 @@ define Build/Compile
|
||||
endef
|
||||
|
||||
define Package/php5/install
|
||||
install -m0755 -d $(1)/etc
|
||||
install -d -m0755 $(1)/etc
|
||||
install -m0644 ./files/php.ini $(1)/etc/
|
||||
endef
|
||||
|
||||
define Package/php5-cli/install
|
||||
install -m0755 -d $(1)/usr/bin
|
||||
install -d -m0755 $(1)/usr/bin
|
||||
$(CP) $(PKG_BUILD_DIR)/php-cli $(1)/usr/bin/php
|
||||
endef
|
||||
|
||||
define Package/php5-cgi/install
|
||||
install -m0755 -d $(1)/usr/bin
|
||||
install -d -m0755 $(1)/usr/bin
|
||||
$(CP) $(PKG_BUILD_DIR)/php-cgi $(1)/usr/bin/php
|
||||
endef
|
||||
|
||||
define Package/php5-fastcgi/install
|
||||
install -m0755 -d $(1)/usr/sbin
|
||||
install -d -m0755 $(1)/usr/sbin
|
||||
$(CP) $(PKG_BUILD_DIR)/php-fastcgi $(1)/usr/sbin/php
|
||||
install -m0755 -d $(1)/etc/init.d
|
||||
install -d -m0755 $(1)/etc/init.d
|
||||
install -m0755 ./files/php.init $(1)/etc/init.d/php
|
||||
endef
|
||||
|
||||
|
Reference in New Issue
Block a user