Make stuff more robust by stripping space that might confuse.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@3708 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 1999-02-15 09:20:19 +00:00
parent fba164d067
commit 6c8b3a5bf5
11 changed files with 34 additions and 0 deletions

View file

@ -1,3 +1,17 @@
Mon Feb 15 8:48:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
* aggregate.make: Strip space from name variable before use.
* application.make: ditto
* bundle.make: ditto
* documentation.make: ditto
* library.make: ditto
* objc.make: ditto
* service.make: ditto
* test-application.make: ditto
* test-library.make: ditto
* test-tool.make: ditto
* tool.make: ditto
Mon Feb 8 08:24:39 1999 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
* ld_lib_path.csh: Rename additional_library_paths to

View file

@ -33,6 +33,7 @@ include $(GNUSTEP_MAKEFILES)/rules.make
# The list of directory names with the subprojects
# are in the makefile variable SUBPROJECTS
#
SUBPROJECTS:=$(strip $(SUBPROJECTS))
#
# Internal targets

View file

@ -36,6 +36,8 @@ include $(GNUSTEP_MAKEFILES)/rules.make
# where xxx is the application name
#
APP_NAME:=$(strip $(APP_NAME))
# Determine the application directory extension
ifeq ($(profile), yes)
APP_EXTENSION = profile

View file

@ -36,6 +36,8 @@ include $(GNUSTEP_MAKEFILES)/rules.make
# where xxx is the bundle name
#
BUNDLE_NAME:=$(strip $(BUNDLE_NAME))
ifeq ($(INTERNAL_bundle_NAME),)
# This part is included the first time make is invoked.

View file

@ -40,6 +40,9 @@ include $(GNUSTEP_MAKEFILES)/rules.make
# Where xxx is the name of the document
#
DOCUMENT_NAME:=$(strip $(DOCUMENT_NAME))
DOCUMENT_TEXT_NAME:=$(strip $(DOCUMENT_TEXT_NAME))
ifeq ($(INTERNAL_doc_NAME)$(INTERNAL_textdoc_NAME),)
# This part is included the first time make is invoked.

View file

@ -42,6 +42,8 @@ include $(GNUSTEP_MAKEFILES)/rules.make
# Where xxx is the name of the library
#
LIBRARY_NAME:=$(strip $(LIBRARY_NAME))
ifeq ($(INTERNAL_library_NAME),)
# This part is included the first time make is invoked.

View file

@ -29,6 +29,8 @@ OBJC_PROGRAM_MAKE_LOADED=yes
# xxx We need to prefix the target name when cross-compiling
#
OBJC_PROGRAM_NAME:=$(strip $(OBJC_PROGRAM_NAME))
#
# Include in the common makefile rules
#

View file

@ -37,6 +37,8 @@ include $(GNUSTEP_MAKEFILES)/rules.make
# where xxx is the service name
#
SERVICE_NAME:=$(strip $(SERVICE_NAME))
ifeq ($(INTERNAL_svc_NAME),)
# This part gets included by the first invoked make process.
internal-all:: $(SERVICE_NAME:=.all.svc.variables)

View file

@ -23,6 +23,8 @@
ifeq ($(TEST_APPLICATION_MAKE_LOADED),)
TEST_APPLICATION_MAKE_LOADED=yes
TEST_APP_NAME:=$(strip $(TEST_APP_NAME))
#
# Include in the common makefile rules
#

View file

@ -23,6 +23,8 @@
ifeq ($(TEST_TOOL_MAKE_LOADED),)
TEST_TOOL_MAKE_LOADED=yes
TEST_TOOL_NAME:=$(strip $(TEST_TOOL_NAME))
#
# Include in the common makefile rules
#

View file

@ -29,6 +29,8 @@
ifeq ($(TOOL_MAKE_LOADED),)
TOOL_MAKE_LOADED=yes
TOOL_NAME:=$(strip $(TOOL_NAME))
#
# Include in the common makefile rules
#