From: <abe...@us...> - 2013-03-29 22:33:05
|
Revision: 6024 http://astlinux.svn.sourceforge.net/astlinux/?rev=6024&view=rev Author: abelbeck Date: 2013-03-29 22:32:57 +0000 (Fri, 29 Mar 2013) Log Message: ----------- build system, fix from upstream Buildroot... When cross-compiled, some packages incorrectly prefix their executables with the target tuple. Fix that by forcing the program prefix to the empty string when calling ./configure Modified Paths: -------------- branches/1.0/package/Makefile.autotools.in Modified: branches/1.0/package/Makefile.autotools.in =================================================================== --- branches/1.0/package/Makefile.autotools.in 2013-03-29 22:12:47 UTC (rev 6023) +++ branches/1.0/package/Makefile.autotools.in 2013-03-29 22:32:57 UTC (rev 6024) @@ -100,6 +100,7 @@ --prefix=/usr \ --exec-prefix=/usr \ --sysconfdir=/etc \ + --program-prefix="" \ $$(DISABLE_DOCUMENTATION) \ $$(DISABLE_NLS) \ $$(DISABLE_LARGEFILE) \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-02-02 05:12:42
|
Revision: 6959 http://sourceforge.net/p/astlinux/code/6959 Author: abelbeck Date: 2015-02-02 05:12:39 +0000 (Mon, 02 Feb 2015) Log Message: ----------- build system, fix cosmetic error message from upstream Buildroot http://git.buildroot.net/buildroot/commit/package?id=383287ce33c7e8780db3b2a3374aa0b2e57af889 Modified Paths: -------------- branches/1.0/package/Makefile.autotools.in Modified: branches/1.0/package/Makefile.autotools.in =================================================================== --- branches/1.0/package/Makefile.autotools.in 2015-01-30 15:28:20 UTC (rev 6958) +++ branches/1.0/package/Makefile.autotools.in 2015-02-02 05:12:39 UTC (rev 6959) @@ -158,7 +158,7 @@ elif test $$$${ltmain_version} = "2.2"; then\ toolchain/patch-kernel.sh $$$${i%/*} package buildroot-libtool-v2.2.patch; \ elif test $$$${ltmain_version} = "2.4"; then\ - if test $$$${ltmain_patchlevel} -gt 2; then \ + if test $$$${ltmain_patchlevel:-0} -gt 2; then \ toolchain/patch-kernel.sh $$$${i%/*} package buildroot-libtool-v2.4.4.patch; \ else \ toolchain/patch-kernel.sh $$$${i%/*} package buildroot-libtool-v2.4.patch; \ @@ -190,7 +190,7 @@ elif test $$$${ltmain_version} = "2.2"; then\ toolchain/patch-kernel.sh $$$${i%/*} package buildroot-libtool-v2.2.patch; \ elif test $$$${ltmain_version} = "2.4"; then\ - if test $$$${ltmain_patchlevel} -gt 2; then \ + if test $$$${ltmain_patchlevel:-0} -gt 2; then \ toolchain/patch-kernel.sh $$$${i%/*} package buildroot-libtool-v2.4.4.patch; \ else \ toolchain/patch-kernel.sh $$$${i%/*} package buildroot-libtool-v2.4.patch; \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-02-11 17:42:59
|
Revision: 6974 http://sourceforge.net/p/astlinux/code/6974 Author: abelbeck Date: 2015-02-11 17:42:56 +0000 (Wed, 11 Feb 2015) Log Message: ----------- build system, fix patching libtool with a verson with a single 'dot' and eliminate errors like: /bin/sh: line 0: test: 2.4: integer expression expected Modified Paths: -------------- branches/1.0/package/Makefile.autotools.in Modified: branches/1.0/package/Makefile.autotools.in =================================================================== --- branches/1.0/package/Makefile.autotools.in 2015-02-11 16:39:52 UTC (rev 6973) +++ branches/1.0/package/Makefile.autotools.in 2015-02-11 17:42:56 UTC (rev 6974) @@ -150,10 +150,10 @@ -a "$$($$(PKG)_AUTORECONF)" != "YES"; then \ for i in `find $$($$(PKG)_SRCDIR) -name ltmain.sh`; do \ ltmain_version=`sed -n '/^[ ]*VERSION=/{s/^[ ]*VERSION=//;p;q;}' $$$$i | \ - sed -e 's/\([0-9].[0-9]*\).*/\1/' -e 's/\"//'`; \ - ltmain_patchlevel=`sed -n '/^[ ]*VERSION=/{s/^[ ]*VERSION=//;p;q;}' $$$$i | \ - sed -e 's/\([0-9].[0-9].\)\([0-9]*\).*/\2/' -e 's/\"//'`; \ - if test $$$${ltmain_version} = '1.5'; then \ + sed -e 's/\([0-9][.][0-9][0-9]*\).*/\1/' -e 's/\"//'`; \ + ltmain_patchlevel=`sed -n '/^[ ]*VERSION=/{s/^[ ]*VERSION=//;p;q;}' $$$$i | \ + sed -e 's/\([0-9][.][0-9][0-9]*[.]*\)\([0-9]*\).*/\2/' -e 's/\"//'`; \ + if test $$$${ltmain_version} = "1.5"; then \ toolchain/patch-kernel.sh $$$${i%/*} package buildroot-libtool-v1.5.patch; \ elif test $$$${ltmain_version} = "2.2"; then\ toolchain/patch-kernel.sh $$$${i%/*} package buildroot-libtool-v2.2.patch; \ @@ -182,9 +182,9 @@ $(Q)if test "$$($$(PKG)_LIBTOOL_PATCH)" = "YES"; then \ for i in `find $$($$(PKG)_SRCDIR) -name ltmain.sh`; do \ ltmain_version=`sed -n '/^[ ]*VERSION=/{s/^[ ]*VERSION=//;p;q;}' $$$$i | \ - sed -e 's/\([0-9].[0-9]*\).*/\1/' -e 's/\"//'`; \ - ltmain_patchlevel=`sed -n '/^[ ]*VERSION=/{s/^[ ]*VERSION=//;p;q;}' $$$$i | \ - sed -e 's/\([0-9].[0-9].\)\([0-9]*\).*/\2/' -e 's/\"//'`; \ + sed -e 's/\([0-9][.][0-9][0-9]*\).*/\1/' -e 's/\"//'`; \ + ltmain_patchlevel=`sed -n '/^[ ]*VERSION=/{s/^[ ]*VERSION=//;p;q;}' $$$$i | \ + sed -e 's/\([0-9][.][0-9][0-9]*[.]*\)\([0-9]*\).*/\2/' -e 's/\"//'`; \ if test $$$${ltmain_version} = "1.5"; then \ toolchain/patch-kernel.sh $$$${i%/*} package buildroot-libtool-v1.5.patch; \ elif test $$$${ltmain_version} = "2.2"; then\ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |