diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-10-01 16:15:31 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-10-01 16:15:31 +0000 |
commit | 14a71561a388196edbcddfa72d281e911c06266f (patch) | |
tree | f9d8c334412e82c05aad398daefdee7d6bfea5e0 /package/xorg | |
parent | 4ad141c338ef1f720d69b8d56a2be336128403e8 (diff) |
- just use the strip binary to avoid confusing libtool (quotes)
- use $(STRIPCMD) in packages to avoid clashes with $(STRIP)
Diffstat (limited to 'package/xorg')
-rw-r--r-- | package/xorg/xorg.mk | 6 |
1 files changed, 3 insertions, 3 deletions
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); \ |