[pacman-dev] [PATCH] makepkg: clean up pkgver and prepare log files

Michael Straube straubem at gmx.de
Wed Apr 12 14:53:53 UTC 2017


Delete log files for the pkgver and prepare functions if -c,--clean is
passed.

Fixes FS#51039 and FS#51075

Includes patch submitted by Christian Braun.

Signed-off-by: Michael Straube <straubem at gmx.de>
---
 scripts/makepkg.sh.in | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index 29408929..0218e13b 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -137,6 +137,12 @@ clean_up() {
 		if [[ -n $pkgbase ]]; then
 			local fullver=$(get_full_version)
 			# Can't do this unless the BUILDSCRIPT has been sourced.
+			if (( PKGVERFUNC )); then
+				rm -f "${pkgbase}-${fullver}-${CARCH}-pkgver.log"*
+			fi
+			if (( PREPAREFUNC )); then
+				rm -f "${pkgbase}-${fullver}-${CARCH}-prepare.log"*
+			fi
 			if (( BUILDFUNC )); then
 				rm -f "${pkgbase}-${fullver}-${CARCH}-build.log"*
 			fi
-- 
2.12.2


More information about the pacman-dev mailing list