summaryrefslogtreecommitdiffstats
path: root/Makefile.inc1
diff options
context:
space:
mode:
authordelphij <delphij@FreeBSD.org>2013-10-01 22:53:27 +0000
committerdelphij <delphij@FreeBSD.org>2013-10-01 22:53:27 +0000
commitb9aa7441daf414572fb19482edab6cfc5e2a511a (patch)
tree36e2ec06f2a60bd138be3d2a6c47920b6b64a42c /Makefile.inc1
parentb6f424e5480e9f4ade452fcc642a1358c611536c (diff)
downloadFreeBSD-src-b9aa7441daf414572fb19482edab6cfc5e2a511a.zip
FreeBSD-src-b9aa7441daf414572fb19482edab6cfc5e2a511a.tar.gz
Revert-and-redo r255955: the sort -r should be added to delete-old-dirs.
Approved by: re (gjb)
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc14
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index 5fed30e..ac10c2b 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -1673,7 +1673,7 @@ delete-old-files:
# the Makefile parser segfault.
@exec 3<&0; \
${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
- -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | sort -r | \
+ -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
while read file; do \
if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
@@ -1738,7 +1738,7 @@ check-old-libs:
delete-old-dirs:
@echo ">>> Removing old directories"
@${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
- -V OLD_DIRS | xargs -n1 | \
+ -V OLD_DIRS | xargs -n1 | sort -r | \
while read dir; do \
if [ -d "${DESTDIR}/$${dir}" ]; then \
rmdir -v "${DESTDIR}/$${dir}" || true; \
OpenPOWER on IntegriCloud