Update "make distfile" to use newest automake/autoconf from ports.

Thanks to: Juergen Lock
This commit is contained in:
Tim Kientzle 2005-04-17 17:51:05 +00:00
parent e993bdf0b7
commit fec57dbcd5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=145203
2 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@
LIB= archive
VERSION= 1.02.016
VERSION= 1.02.017
ARCHIVE_API_FEATURE= 2
ARCHIVE_API_VERSION= 1
SHLIB_MAJOR= ${ARCHIVE_API_VERSION}
@ -204,7 +204,7 @@ distfile:
cat ${.CURDIR}/configure.ac.in | \
sed 's/@VERSION@/${VERSION}/' | \
cat > ${DIST_WORK_DIR}/configure.ac
(cd ${DIST_WORK_DIR} && aclocal && autoheader && autoconf && automake -a --foreign)
(cd ${DIST_WORK_DIR} && aclocal19 && autoheader259 && autoconf259 && automake19 -a --foreign)
(cd ${DIST_WORK_DIR} && ./configure && make distcheck && make dist)
mv ${DIST_WORK_DIR}/${DISTFILE} ${.OBJDIR}
@echo ==================================================

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} && aclocal && autoheader && autoconf )
(cd ${DIST_BUILD_DIR} && automake -a --foreign)
(cd ${DIST_BUILD_DIR} && aclocal19 && autoheader259 && autoconf259 )
(cd ${DIST_BUILD_DIR} && automake19 -a --foreign)
(cd ${DIST_BUILD_DIR} && ./configure && make distcheck && make dist)
mv ${DIST_BUILD_DIR}/${DISTFILE} ${.OBJDIR}
@echo ==================================================