From a0509900b65f72e9db60eeb660f0586cd5fa775c Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 31 Jan 2013 10:43:18 +0100 Subject: Proper spacing in makefile command line continuations Quoting "The Open Group Base Specifications Issue 7" at "Extended Description: Makefile Syntax:" "When an escaped is found in a command line in a makefile, the command line shall contain the , the , and the next line, except that the first character of the next line shall not be included if it is a ." On Mac OS X, this caused raptor and rasqal to erroneously be configured with a --prefix argument that ended in "--disable-static". Change-Id: I9455f8e2e624b245a5278a21d8b0f62d8780f9e4 --- redland/ExternalProject_raptor.mk | 2 +- redland/ExternalProject_rasqal.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'redland') diff --git a/redland/ExternalProject_raptor.mk b/redland/ExternalProject_raptor.mk index baf0873308e8..4dae07e4ae49 100644 --- a/redland/ExternalProject_raptor.mk +++ b/redland/ExternalProject_raptor.mk @@ -47,7 +47,7 @@ $(call gb_ExternalProject_get_state_target,raptor,build): --without-threestone --with-regex-library=posix --with-decimal=none \ --with-www=xml \ $(if $(filter YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \ - $(if $(filter MACOSX,$(OS)),--prefix=/@.__________________________________________________OOO)\ + $(if $(filter MACOSX,$(OS)),--prefix=/@.__________________________________________________OOO) \ $(if $(filter IOS ANDROID,$(OS)),--disable-shared,--disable-static) \ $(if $(filter NO,$(SYSTEM_LIBXSLT)),--with-xslt-config=$(OUTDIR)/bin/xslt-config) \ $(if $(filter NO,$(SYSTEM_LIBXML)), \ diff --git a/redland/ExternalProject_rasqal.mk b/redland/ExternalProject_rasqal.mk index d52ef3a74620..0dfcb14f32c1 100644 --- a/redland/ExternalProject_rasqal.mk +++ b/redland/ExternalProject_rasqal.mk @@ -48,7 +48,7 @@ $(call gb_ExternalProject_get_state_target,rasqal,build): --without-postgresql --without-threestone --with-regex-library=posix \ --with-decimal=none --with-www=xml \ $(if $(filter YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \ - $(if $(filter MACOSX,$(OS)),--prefix=/@.__________________________________________________OOO)\ + $(if $(filter MACOSX,$(OS)),--prefix=/@.__________________________________________________OOO) \ $(if $(filter IOS ANDROID,$(OS)),--disable-shared,--disable-static) \ && $(MAKE) \ && touch $@ -- cgit