mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
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:
parent
fd812d8946
commit
fbb4af81fc
2 changed files with 7 additions and 0 deletions
|
@ -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;
|
||||
|
|
|
@ -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 \
|
||||
|
|
Loading…
Reference in a new issue