Changed to use aclocal --print-ac-dir to locate the aclocal dir.

This commit is contained in:
Scott McCreary
2011-03-23 23:05:03 +00:00
parent 22a77ad1a2
commit 831c39f907
2 changed files with 12 additions and 11 deletions

View File

@@ -9,13 +9,13 @@ BUILD {
cd libogg-1.2.2
rm aclocal.m4
mkdir -p m4
cp /boot/common/share/aclocal/ltversion.m4 m4
libtoolize --force --copy --install
cp `aclocal --print-ac-dir`/ltversion.m4 m4
libtoolize -fci
echo 'AC_CONFIG_MACRO_DIR([m4]) >> configure.in'
libtoolize --force --copy --install
libtoolize -fci
aclocal -I m4
autoconf
./configure --prefix=/boot/common
./configure --prefix=`finddir B_COMMON_DIRECTORY`
make
}
@@ -23,5 +23,6 @@ INSTALL {
cd libogg-1.2.2
make install
}
LICENSE="BSD (3-clause)"
COPYRIGHT="1994-2010 Xiph.Org Foundation"