mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 00:04:06 -09:00
- just use the strip binary to avoid confusing libtool (quotes)
- use $(STRIPCMD) in packages to avoid clashes with $(STRIP)
This commit is contained in:
@@ -105,12 +105,12 @@ $(PHP_DIR)/.staged: $(PHP_DIR)/.built
|
||||
$(TARGET_DIR)/usr/bin/php: $(PHP_DIR)/.staged
|
||||
cp -dpf $(STAGING_DIR)/usr/bin/php $(TARGET_DIR)/usr/bin/php
|
||||
chmod 755 $(TARGET_DIR)/usr/bin/php
|
||||
$(STRIP) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/bin/php
|
||||
$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/bin/php
|
||||
|
||||
$(TARGET_DIR)/usr/bin/php-cgi: $(PHP_DIR)/.staged
|
||||
cp -dpf $(STAGING_DIR)/usr/bin/php-cgi $(TARGET_DIR)/usr/bin/php-cgi
|
||||
chmod 755 $(TARGET_DIR)/usr/bin/php-cgi
|
||||
$(STRIP) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/bin/php-cgi
|
||||
$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/bin/php-cgi
|
||||
|
||||
$(TARGET_DIR)/etc/php.ini: $(PHP_DIR)/.staged
|
||||
cp -f $(PHP_DIR)/php.ini-dist $(TARGET_DIR)/etc/php.ini
|
||||
|
||||
Reference in New Issue
Block a user