From 5738cc3a36a80e71af451fd107e970183dc5383c Mon Sep 17 00:00:00 2001 From: John Marino Date: Sun, 8 Mar 2015 15:56:21 +0100 Subject: [PATCH] installworld: Fix auto-backup of world The automatic backup of world binaries has been failing for months. I finally got around to looking at this -- the tar program couldn't be found, so we have to use the full path (/usr/bin/tar). --- Makefile.inc1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index aee1a3a92c..96ab6cc070 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -1152,7 +1152,7 @@ backupworld-auto: .if (exists(${DESTDIR}/sbin) && exists(${DESTDIR}/bin) && \ exists(${DESTDIR}/usr/sbin) && exists(${DESTDIR}/usr/bin) && \ exists(${DESTDIR}/usr/lib) && exists(${DESTDIR}/usr/libexec)) - tar -czf ${AUTO_BACKUP}/binaries.tar.gz -C ${DESTDIR}/ \ + /usr/bin/tar -czf ${AUTO_BACKUP}/binaries.tar.gz -C ${DESTDIR}/ \ --options gzip:compression-level=1 \ sbin bin usr/sbin usr/bin usr/lib usr/libexec .endif -- 2.41.0