diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-10-29 12:02:36 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-10-29 12:03:34 +0100 |
commit | 67a23b6af991d383de5d431db9cc88d18f488b7c (patch) | |
tree | e0ca8b1120b799879e8ae57cce4efe100df57c55 /mythes | |
parent | cda6b4e991f45ec870a311ab736038bd93227900 (diff) |
move setup of HUNSPELL_CFLAGS etc. to configure
Change-Id: Id50ca2e0804d9e56334c9f7149dc4080a7fee729
Diffstat (limited to 'mythes')
-rw-r--r-- | mythes/ExternalProject_mythes.mk | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/mythes/ExternalProject_mythes.mk b/mythes/ExternalProject_mythes.mk index 1d2ab7bc8668..b146823c6f5a 100644 --- a/mythes/ExternalProject_mythes.mk +++ b/mythes/ExternalProject_mythes.mk @@ -21,10 +21,8 @@ $(call gb_ExternalProject_get_state_target,mythes,build): cd $(EXTERNAL_WORKDIR) \ && ./configure --disable-shared --with-pic \ $(if $(filter YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM) gio_can_sniff=no) \ - $(if $(filter NO,$(SYSTEM_HUNSPELL)), \ - HUNSPELL_CFLAGS="-I$(call gb_UnpackedTarball_get_dir,hunspell/src/hunspell)" \ - HUNSPELL_LIBS="-L$(OUTDIR)/lib -lhunspell" \ - ) \ + HUNSPELL_CFLAGS=" $(HUNSPELL_CFLAGS)" \ + HUNSPELL_LIBS=" $(HUNSPELL_LIBS)" \ $(if $(filter C52U,$(COM)$(CPU)),CFLAGS="-m64") \ && $(GNUMAKE) -j$(EXTMAXPROCESS) \ && touch $@ |