comparison src/libmng.mk @ 4128:253ac032547a

Fix more problems with libmng recipe (bug #47712). * src/libmng.mk: Remove unnecessary mkdir command in recipe. Call autoreconf with --force option because the libmng archive file ships with an out-of-date ltmain.sh which will not be replaced without --force.
author Rik <rik@octave.org>
date Wed, 20 Apr 2016 15:39:48 -0700
parents 132ee4f1871b
children dc3eb553f5e9
comparison
equal deleted inserted replaced
4127:132ee4f1871b 4128:253ac032547a
15 $(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \ 15 $(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \
16 head -1 16 head -1
17 endef 17 endef
18 18
19 define $(PKG)_BUILD 19 define $(PKG)_BUILD
20 mkdir '$(1)/.build' 20 cd '$(1)' && autoreconf --install --force
21 cd '$(1)' && autoreconf --install
22 cd '$(1)' && ./configure \ 21 cd '$(1)' && ./configure \
23 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \ 22 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
24 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \ 23 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
25 --prefix='$(HOST_PREFIX)' \ 24 --prefix='$(HOST_PREFIX)' \
26 $(ENABLE_SHARED_OR_STATIC) \ 25 $(ENABLE_SHARED_OR_STATIC) \