diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2018-06-30 08:41:01 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2018-06-30 11:20:43 +0200 |
commit | 044b73b2adcbd739a186ddaea5830db7ff605f09 (patch) | |
tree | 9e94cd8a9ca80d3c608ebddf61fc7c8a93bd39e5 | |
parent | 7e542234eb36750afc188ea878ba0e5ac09f8698 (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>
-rw-r--r-- | external/libnumbertext/ExternalProject_libnumbertext.mk | 2 |
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))\ |