From: Giovanni Giacobbi Date: Fri, 22 Jan 2021 00:25:39 +0000 (+0000) Subject: php7: Fix prepare target incorrectly referencing 'configure.in' instead of 'configure.ac' X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=11e9a2e1792e55347ae42c0149fd32aaa1d43a32;p=feed%2Fpackages.git php7: Fix prepare target incorrectly referencing 'configure.in' instead of 'configure.ac' Package release version unchanged as it does not impact the build result in any way. Signed-off-by: Giovanni Giacobbi --- diff --git a/lang/php7/Makefile b/lang/php7/Makefile index 877fd7cac5..4685ef7539 100644 --- a/lang/php7/Makefile +++ b/lang/php7/Makefile @@ -561,7 +561,7 @@ endef define Build/Prepare $(call Build/Prepare/Default) - ( cd $(PKG_BUILD_DIR); touch configure.in; ./buildconf --force ) + ( cd $(PKG_BUILD_DIR); touch configure.ac; ./buildconf --force ) endef define Build/InstallDev