mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Do not build framework's Info-gnustep.plist on Apple, fixing framework build
on Apple. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@18043 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e4c3645148
commit
5d2e55a4b7
2 changed files with 17 additions and 8 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,8 +1,14 @@
|
|||
Mon Nov 3 23:25:07 2003 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
* Instance/framework.make (build-framework): Do not build
|
||||
Info-gnustep.plist on Apple.
|
||||
|
||||
Mon Nov 3 11:50:30 2003 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
* Instance/framework.make (FRAMEWORK_LIBRARY_FILE_EXT): Unused variable
|
||||
* Instance/framework.make (FRAMEWORK_LIBRARY_FILE_EXT): Unused
|
||||
variable removed.
|
||||
* Instance/framework.make (FRAMEWORK_FILE_EXT): Unused variable
|
||||
removed.
|
||||
* Instance/framework.make (FRAMEWORK_FILE_EXT): Unused variable removed.
|
||||
|
||||
Fri Oct 31 17:16:51 2003 Matt Rice <ratmice@yahoo.com>
|
||||
|
||||
|
|
|
@ -355,21 +355,24 @@ ifeq ($(FOUNDATION_LIB), apple)
|
|||
# top-level symlink xxx.framework/xxx ---> the framework shared
|
||||
# library
|
||||
|
||||
OPTIONAL_TOP_LEVEL_LINK = $(GNUSTEP_BUILD_DIR)/$(GNUSTEP_INSTANCE).framework/$(GNUSTEP_INSTANCE)
|
||||
build-framework:: $(FRAMEWORK_FILE) \
|
||||
shared-instance-bundle-all \
|
||||
$(FRAMEWORK_VERSION_DIR)/Resources/Info.plist \
|
||||
$(GNUSTEP_BUILD_DIR)/$(GNUSTEP_INSTANCE).framework/$(GNUSTEP_INSTANCE)
|
||||
|
||||
$(GNUSTEP_BUILD_DIR)/$(GNUSTEP_INSTANCE).framework/$(GNUSTEP_INSTANCE):
|
||||
$(ECHO_NOTHING)cd $(GNUSTEP_BUILD_DIR)/$(GNUSTEP_INSTANCE).framework; \
|
||||
rm -f $(GNUSTEP_INSTANCE); \
|
||||
$(LN_S) Versions/Current/$(GNUSTEP_TARGET_LDIR)/$(GNUSTEP_INSTANCE) $(GNUSTEP_INSTANCE)$(END_ECHO)
|
||||
else
|
||||
OPTIONAL_TOP_LEVEL_LINK =
|
||||
endif
|
||||
|
||||
build-framework:: $(FRAMEWORK_FILE) \
|
||||
shared-instance-bundle-all \
|
||||
$(FRAMEWORK_VERSION_DIR)/Resources/Info.plist \
|
||||
$(FRAMEWORK_VERSION_DIR)/Resources/Info-gnustep.plist \
|
||||
$(OPTIONAL_TOP_LEVEL_LINK)
|
||||
$(FRAMEWORK_VERSION_DIR)/Resources/Info-gnustep.plist
|
||||
|
||||
endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue