mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 10:32:57 +01:00
Makefile: space(s) following target name will break build (during link) #3062
This commit is contained in:
parent
34c4d7c4a2
commit
c97d57017c
@ -20,6 +20,10 @@ DYLIB = $(SHLIB)
|
|||||||
DYLIBFLAGS = $(SHLIBFLAGS)
|
DYLIBFLAGS = $(SHLIBFLAGS)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
target := $(strip $(target))
|
||||||
|
target_version := $(strip $(target_version))
|
||||||
|
target_libs := $(strip $(target_libs))
|
||||||
|
|
||||||
DYLIB_DEBUG = $(BINPATH)/$(target)d$(OSARCH_POSTFIX)$(SHL_EXT)
|
DYLIB_DEBUG = $(BINPATH)/$(target)d$(OSARCH_POSTFIX)$(SHL_EXT)
|
||||||
DYLIB_RELEASE = $(BINPATH)/$(target)$(OSARCH_POSTFIX)$(SHL_EXT)
|
DYLIB_RELEASE = $(BINPATH)/$(target)$(OSARCH_POSTFIX)$(SHL_EXT)
|
||||||
DYLIB_S_DEBUG = $(BINPATH)/static/$(target)d$(OSARCH_POSTFIX)$(SHL_EXT)
|
DYLIB_S_DEBUG = $(BINPATH)/static/$(target)d$(OSARCH_POSTFIX)$(SHL_EXT)
|
||||||
|
@ -4,6 +4,10 @@
|
|||||||
# Rule definitions for building executables
|
# Rule definitions for building executables
|
||||||
#
|
#
|
||||||
|
|
||||||
|
target := $(strip $(target))
|
||||||
|
target_version := $(strip $(target_version))
|
||||||
|
target_libs := $(strip $(target_libs))
|
||||||
|
|
||||||
#
|
#
|
||||||
# Target names
|
# Target names
|
||||||
#
|
#
|
||||||
|
@ -13,6 +13,10 @@
|
|||||||
# POCO_TARGET_OSARCH: Target system architecture (forr cross builds)
|
# POCO_TARGET_OSARCH: Target system architecture (forr cross builds)
|
||||||
#
|
#
|
||||||
|
|
||||||
|
target := $(strip $(target))
|
||||||
|
target_version := $(strip $(target_version))
|
||||||
|
target_libs := $(strip $(target_libs))
|
||||||
|
|
||||||
#
|
#
|
||||||
# Check for POCO_BASE
|
# Check for POCO_BASE
|
||||||
#
|
#
|
||||||
|
@ -4,6 +4,10 @@
|
|||||||
# Rule definitions for building libraries
|
# Rule definitions for building libraries
|
||||||
#
|
#
|
||||||
|
|
||||||
|
target := $(strip $(target))
|
||||||
|
target_version := $(strip $(target_version))
|
||||||
|
target_libs := $(strip $(target_libs))
|
||||||
|
|
||||||
#
|
#
|
||||||
# Target names
|
# Target names
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user