]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
python: Remove autoconf version check from configure.in.
authorMichael Tremer <michael.tremer@ipfire.org>
Tue, 3 Aug 2010 08:25:51 +0000 (10:25 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Tue, 3 Aug 2010 08:25:51 +0000 (10:25 +0200)
Regression with autoconf 2.67.

pkgs/core/python/python.nm

index b0e7739e809438d0527ff04d6388a4f628250c68..2c0dc349abdb9d13ec025e3f4214f48712c39b14 100644 (file)
@@ -57,7 +57,9 @@ define STAGE_PREPARE_CMDS
        cd $(DIR_APP) && rm -rf Modules/{expat,zlib}
        cd $(DIR_APP) && rm -rf Modules/_ctypes/{darwin,libffi,libffi_arm_wince,libffi_msvc,libffi_osx}
 
-       cd $(DIR_APP) && autoreconf
+       # Remove autoconf version check and reconfigure
+       cd $(DIR_APP) && sed -e "s/^version_required.*//" -i configure.in
+       cd $(DIR_APP) && autoreconf --force
 endef
 
 define STAGE_BUILD