From c4a93a978c2c97e14612b185b22de8dfc42b14ae Mon Sep 17 00:00:00 2001 From: Michał Masłowski Date: Wed, 15 Feb 2012 11:48:26 +0100 Subject: Fix passing arguments of libremakepkg to makepkg. --- libremakepkg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libremakepkg') diff --git a/libremakepkg b/libremakepkg index 44c0d29..7db0e3c 100755 --- a/libremakepkg +++ b/libremakepkg @@ -118,7 +118,7 @@ fi unset CLEANFIRST UPDATEFIRST LIBRECHROOT_ARGS -makechrootpkg -d -r "$CHROOTDIR" -l "$CHROOT" $MAKEPKG_ARGS +makechrootpkg -d -r "$CHROOTDIR" -l "$CHROOT" -- $MAKEPKG_ARGS ev="$?" # exit value copy_log -- cgit v1.2.3-54-g00ecf From e65a1c3238933e4f2909d34f11dc4fce3509a6fb Mon Sep 17 00:00:00 2001 From: Nicolás Reynolds Date: Mon, 9 Apr 2012 13:28:32 -0300 Subject: Copy makepkg logs only --- libremakepkg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libremakepkg') diff --git a/libremakepkg b/libremakepkg index 44c0d29..8678e9a 100755 --- a/libremakepkg +++ b/libremakepkg @@ -24,7 +24,7 @@ function copy_log { # copy logs if they exist - find "${CHROOTDIR}/${CHROOT}/build/" -name "*\.log" -exec cp {} ./ \; + find "${CHROOTDIR}/${CHROOT}/build/" -maxdepth 1 -name "*\.log" -exec cp {} ./ \; } -- cgit v1.2.3-54-g00ecf