Commit e0b5fd6d authored by Franco Fichtner's avatar Franco Fichtner

pkg: generate explicit plist, only for review in 16.7.5

parent c591c257
......@@ -226,8 +226,19 @@ bootstrap: force
CORE_REPOSITORY=${CORE_REPOSITORY}
plist: force
@${MAKE} -C ${.CURDIR}/contrib plist
@${MAKE} -C ${.CURDIR}/src plist
@(${MAKE} -C ${.CURDIR}/contrib plist && \
${MAKE} -C ${.CURDIR}/src plist) | sort
plist-fix: force
@${MAKE} DESTDIR=${DESTDIR} plist > ${.CURDIR}/plist
plist-check: force
@${MAKE} DESTDIR=${DESTDIR} plist > ${WRKDIR}/plist.new
@cat ${.CURDIR}/plist > ${WRKDIR}/plist.old
@if ! diff -uq ${WRKDIR}/plist.old ${WRKDIR}/plist.new > /dev/null ; then \
echo ">>> Package file lists do not match. Please run 'make plist-fix'." >&2; \
diff -u ${WRKDIR}/plist.old ${WRKDIR}/plist.new; \
fi
metadata: force
@mkdir -p ${DESTDIR}
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment