# HG changeset patch # User Rik # Date 1461191988 25200 # Node ID 253ac032547a3e876f5bb45c69f33a32d646a383 # Parent 132ee4f1871b4d515e6abc36cefa3dba02309b7d 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. diff -r 132ee4f1871b -r 253ac032547a src/libmng.mk --- a/src/libmng.mk Wed Apr 20 15:10:50 2016 -0700 +++ b/src/libmng.mk Wed Apr 20 15:39:48 2016 -0700 @@ -17,8 +17,7 @@ endef define $(PKG)_BUILD - mkdir '$(1)/.build' - cd '$(1)' && autoreconf --install + cd '$(1)' && autoreconf --install --force cd '$(1)' && ./configure \ $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \ $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \