Kaydet (Commit) f6fcc5b7 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Set PATH for running the Cygwin Make

Our normal gb_Helper_set_path sets PATH in Windows syntax, which is
fine when running out own build-time tools (which obviously are not
Cygwin programs), but not when running the Cygwin Make.

Change-Id: I5563e2f5a01beb05db56792dfd56116832d2ec36
üst 8dd3de6e
......@@ -46,7 +46,10 @@ $(call gb_ExternalProject_get_state_target,firebird,build):
--with-system-icu --without-fbsample --without-fbsample-db \
$(if $(filter YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \
$(if $(filter IOS ANDROID,$(OS)),--disable-shared,--disable-static) \
&& $(gb_Helper_set_ld_path) $(MAKE) firebird_embedded \
&& $(if $(filter WNT,$(OS)),\
PATH="$(shell cygpath -u $(OUTDIR)/bin):$$PATH",\
$(gb_Helper_set_ld_path)) \
$(MAKE) firebird_embedded \
$(if $(filter MACOSX,$(OS)),&& $(PERL) \
$(SOLARENV)/bin/macosx-change-install-names.pl shl OOO \
$(gb_Package_SOURCEDIR_firebird)/gen/firebird/lib/libfbembed.dylib.2.5.2) \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment