From 5674dc04dcf6f512fcb590cfea8a9eb81cd21954 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 10 Jul 2010 14:43:26 +0200 Subject: [PATCH] autoconf-2.64: Fixed bug that caused old versions of of autoconf to not install in their own directorys Signed-off-by: Stephan Raue --- .../toolchain/devel/autotools/autoconf-2.64/build | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/packages/toolchain/devel/autotools/autoconf-2.64/build b/packages/toolchain/devel/autotools/autoconf-2.64/build index 6bd857b8fc..b583e18ad9 100755 --- a/packages/toolchain/devel/autotools/autoconf-2.64/build +++ b/packages/toolchain/devel/autotools/autoconf-2.64/build @@ -19,9 +19,16 @@ ac_cv_prog_gnu_m4_gnu=no \ make install \ prefix=$ROOT/$TOOLCHAIN \ - pkgdatadir=$ROOT/$TOOLCHAIN/share/autoconf-2.64 install + pkgdatadir=$ROOT/$TOOLCHAIN/share/autoconf-2.64 \ + pkgdatadir=$ROOT/$TOOLCHAIN/lib/autoconf-2.64 \ + pkgdatadir=$ROOT/$TOOLCHAIN/include/autoconf-2.64 \ + install make clean make install \ prefix=$SYSROOT_PREFIX/usr \ - pkgdatadir=$SYSROOT_PREFIX/usr/share/autoconf-2.64 install + pkgdatadir=$SYSROOT_PREFIX/usr/share/autoconf-2.64 \ + pkgdatadir=$SYSROOT_PREFIX/usr/lib/autoconf-2.64 \ + pkgdatadir=$SYSROOT_PREFIX/usr/include/autoconf-2.64 \ + install +