Fix build-headers for framework's subprojects when the framework has the default 0.0.1 version

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@25061 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2007-04-18 02:46:01 +00:00
parent 1d18d202f2
commit d545151891
2 changed files with 11 additions and 2 deletions

View file

@ -1,3 +1,12 @@
2007-04-18 Nicola Pero <nicola.pero@meta-innovation.com>
Fixed installing headers of a framework's subproject when the
framework has the default version (Problem reported by David
Wetzel <dave@turbocat.de>).
* Master/rules.make (%.variables): Fixed default framework version used
to copy headers from subprojects to frameworks.
(%.subprojects): Same change.
2007-04-13 Adam Fedor <fedor@gnu.org>
* Version 2.0.0 (Updated)

View file

@ -295,7 +295,7 @@ if [ "$($(basename $(basename $*))_SUBPROJECTS)" != "" ]; then \
if [ "$$framework_version" = "" ]; then \
framework_version="$(word 1,$(subst ., ,$($(basename $(basename $*))_VERSION)))"; \
if [ "$$framework_version" = "" ]; then \
framework_version="0.0"; \
framework_version="0"; \
fi; \
fi; \
fi; \
@ -370,7 +370,7 @@ if [ "$($(basename $(basename $*))_SUBPROJECTS)" != "" ]; then \
if [ "$$framework_version" = "" ]; then \
framework_version="$(word 1,$(subst ., ,$($(basename $(basename $*))_VERSION)))"; \
if [ "$$framework_version" = "" ]; then \
framework_version="0.0"; \
framework_version="0"; \
fi; \
fi; \
fi; \