Changed openssh and libedit bep files to be able to find aclocal dir.

This commit is contained in:
Scott McCreary
2011-04-10 22:22:54 +00:00
parent 76690bce47
commit 46d7414a72
2 changed files with 9 additions and 7 deletions

View File

@@ -10,7 +10,9 @@ COPYRIGHT="1992-2010 The NetBSD Foundation, Inc."
BUILD {
cd libedit-20100424-3.0
autoreconf --force --install
./configure --prefix=/boot/common --disable-shared
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
--disable-shared \
--mandir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/man
make
}

View File

@@ -11,11 +11,11 @@ BUILD {
cd openssh-5.8p1
autoconf
mkdir -p m4
cp /boot/common/share/aclocal/libtool.m4 m4
cp /boot/common/share/aclocal/ltoptions.m4 m4
cp /boot/common/share/aclocal/ltversion.m4 m4
cp /boot/common/share/aclocal/ltsugar.m4 m4
cp /boot/common/share/aclocal/lt~obsolete.m4 m4
cp `aclocal --print-ac-dir`/libtool.m4 m4
cp `aclocal --print-ac-dir`/ltoptions.m4 m4
cp `aclocal --print-ac-dir`/ltversion.m4 m4
cp `aclocal --print-ac-dir`/ltsugar.m4 m4
cp `aclocal --print-ac-dir`/lt~obsolete.m4 m4
echo 'AC_CONFIG_MACRO_DIR([m4])' >> configure.ac
libtoolize --force --copy
aclocal -I m4
@@ -29,7 +29,7 @@ BUILD {
--includedir=`finddir B_COMMON_DIRECTORY`/include \
--datadir=`finddir B_COMMON_DATA_DIRECTORY` \
--mandir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/man \
--docdir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY` \
--docdir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/doc \
--sysconfdir=`finddir B_COMMON_SETTINGS_DIRECTORY`/ssh \
--with-default-path=${PATH} \
--with-md5-passwords \