Fixed error when installing a bundle which has no object file, and strip=yes is used

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@17849 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2003-10-13 21:34:37 +00:00
parent fd812d8946
commit fbb4af81fc
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Mon Oct 13 23:23:40 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/bundle.make (internal-bundle-install_): Fixed error
when installing with strip=yes a bundle without object file.
Mon Oct 13 15:53:43 2003 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Added configure option --enable-strip-makefiles;

View file

@ -270,8 +270,10 @@ $(BUNDLE_INSTALL_DIR):
internal-bundle-install_:: shared-instance-headers-install \
shared-instance-bundle-install
ifeq ($(strip),yes)
ifneq ($(OBJ_FILES_TO_LINK),)
$(ECHO_STRIPPING)$(STRIP) $(BUNDLE_INSTALL_DIR)/$(BUNDLE_FILE)$(END_ECHO)
endif
endif
internal-bundle-uninstall_:: shared-instance-headers-uninstall \