Correct autoconf/automake invocation to work with devel/gnu-auto* from

ports.

Thanks to: Dag-Erling Sm?rgrav (des@)
This commit is contained in:
Tim Kientzle 2005-04-23 18:44:25 +00:00
parent 77e0f2287a
commit 6b14892866
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=145458

View File

@ -37,8 +37,8 @@ distfile:
cat ${.CURDIR}/configure.ac.in | \
sed 's/@VERSION@/${VERSION}/' | \
cat > ${DIST_BUILD_DIR}/configure.ac
(cd ${DIST_BUILD_DIR} && aclocal19 && autoheader259 && autoconf259 )
(cd ${DIST_BUILD_DIR} && automake19 -a --foreign)
(cd ${DIST_BUILD_DIR} && aclocal && autoheader && autoconf )
(cd ${DIST_BUILD_DIR} && automake -a --foreign)
(cd ${DIST_BUILD_DIR} && ./configure && make distcheck && make dist)
mv ${DIST_BUILD_DIR}/${DISTFILE} ${.OBJDIR}
@echo ==================================================