summaryrefslogtreecommitdiff
path: root/external
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2018-06-30 08:41:01 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2018-07-01 15:07:10 +0200
commitbda21b487f4899fb42ff24515b27e2344ccf9a50 (patch)
tree3bab7559ca00f855436cfe7aa3c542e4d86ca508 /external
parent76c0b3c516f6b0d43136522b4d476eb60211cec1 (diff)
libnumbertext: off-by-one in makefile rule (LIB=.. ineffective)
autoreconf line doesn't need it, it is the configure one that should make use of it.. Change-Id: I1d7b492a8d99f8fbcb8443de7a7def2caaf8df3b Reviewed-on: https://gerrit.libreoffice.org/56745 Tested-by: Jenkins Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> (cherry picked from commit 044b73b2adcbd739a186ddaea5830db7ff605f09) Reviewed-on: https://gerrit.libreoffice.org/56748
Diffstat (limited to 'external')
-rw-r--r--external/libnumbertext/ExternalProject_libnumbertext.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/external/libnumbertext/ExternalProject_libnumbertext.mk b/external/libnumbertext/ExternalProject_libnumbertext.mk
index 9320c62dcfee..c36336ae52bf 100644
--- a/external/libnumbertext/ExternalProject_libnumbertext.mk
+++ b/external/libnumbertext/ExternalProject_libnumbertext.mk
@@ -30,8 +30,8 @@ $(call gb_ExternalProject_get_state_target,libnumbertext,build):
$(call gb_ExternalProject_run,build,\
$(if $(libnumbertext_LIBS),LIBS='$(libnumbertext_LIBS)') \
$(if $(filter IOS MACOSX,$(OS)),ACLOCAL="aclocal -I $(SRCDIR)/m4/mac") \
- LIBS="$(gb_STDLIBS) $(LIBS)" \
autoreconf && \
+ LIBS="$(gb_STDLIBS) $(LIBS)" \
$(SHELL) ./configure --disable-shared --with-pic \
$(if $(verbose),--disable-silent-rules,--enable-silent-rules) \
$(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM))\