mirror of
https://github.com/opnsense/src.git
synced 2026-06-12 10:10:24 -04:00
Update "make distfile" to use newest automake/autoconf from ports.
Thanks to: Juergen Lock
This commit is contained in:
parent
e993bdf0b7
commit
fec57dbcd5
2 changed files with 4 additions and 4 deletions
|
|
@ -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 ==================================================
|
||||
|
|
|
|||
|
|
@ -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 ==================================================
|
||||
|
|
|
|||
Loading…
Reference in a new issue