make: fix plist check on FreeBSD 13

This commit is contained in:
Franco Fichtner 2021-08-19 12:57:06 +02:00
parent 1b9e263195
commit b91f9077f6

View File

@ -295,7 +295,7 @@ plist-check:
@mkdir -p ${WRKDIR}
@${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 \
@if ! diff -q ${WRKDIR}/plist.old ${WRKDIR}/plist.new > /dev/null ; then \
diff -u ${WRKDIR}/plist.old ${WRKDIR}/plist.new || true; \
echo ">>> Package file lists do not match. Please run 'make plist-fix'." >&2; \
rm ${WRKDIR}/plist.*; \