From 14a71561a388196edbcddfa72d281e911c06266f Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Mon, 1 Oct 2007 16:15:31 +0000 Subject: - just use the strip binary to avoid confusing libtool (quotes) - use $(STRIPCMD) in packages to avoid clashes with $(STRIP) --- package/xorg/xorg.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'package/xorg/xorg.mk') diff --git a/package/xorg/xorg.mk b/package/xorg/xorg.mk index 45c7cf129..ae258989b 100644 --- a/package/xorg/xorg.mk +++ b/package/xorg/xorg.mk @@ -125,11 +125,11 @@ $(TARGET_XSERVER): $(XORG_XSERVER) for file in $(XORG_APPS); do \ cp -f $(XORG_DIR)/programs/$$file $(XORG_BINX); \ chmod a+x $(XORG_PROGS)/$$file; \ - $(STRIP) $(XORG_PROGS)/$$file || /bin/true; \ + $(STRIPCMD) $(XORG_PROGS)/$$file || /bin/true; \ done cp $(XORG_XSERVER) $(TARGET_XSERVER) (cd $(XORG_BINX); ln -snf $(XSERVER_BINARY) X) - $(STRIP) $(TARGET_XSERVER) + $(STRIPCMD) $(TARGET_XSERVER) mkdir -p $(XORG_LIBX)/modules cp -LRf $(XORG_DIR)/exports/lib/modules/ $(XORG_LIBX)/ ( cd $(XORG_DIR)/fonts; $(MAKE) \ @@ -190,7 +190,7 @@ $(XORG_LIBX)/libX11.so.6.2: $(TARGET_XSERVER) $(XORG_LIBX)/X11/fonts/ttf-dejavu/ mkdir -p $(XORG_LIBX) set -e; for dirs in $(XORG_LIBS); do \ file=`find $(XORG_LDIR)/$$dirs -type f -iname "*$$dirs.so*"`; \ - $(STRIP) $(STRIP_STRIP_UNNEEDED) $$file; \ + $(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $$file; \ cp -f $$file $(XORG_LIBX); \ file=`find $(XORG_LDIR)/$$dirs -type l -iname "*$$dirs.so*"`; \ cp -pRf $$file $(XORG_LIBX); \ -- cgit v1.2.3