mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
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:
parent
fba164d067
commit
6c8b3a5bf5
11 changed files with 34 additions and 0 deletions
14
ChangeLog
14
ChangeLog
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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
|
||||
#
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
#
|
||||
|
|
|
@ -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
|
||||
#
|
||||
|
|
|
@ -29,6 +29,8 @@
|
|||
ifeq ($(TOOL_MAKE_LOADED),)
|
||||
TOOL_MAKE_LOADED=yes
|
||||
|
||||
TOOL_NAME:=$(strip $(TOOL_NAME))
|
||||
|
||||
#
|
||||
# Include in the common makefile rules
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue