From b7c994db8b049b87df5ec5d6cada84a36c60c47d Mon Sep 17 00:00:00 2001 From: William Giokas <1007380@gmail.com> Date: Fri, 15 Mar 2013 12:11:11 -0500 Subject: makepkg: don't run remove_deps twice when unneeded remove_deps already has a check and won't run unless -r is specified, so if this was meant to remove dependencies of a failure no matter what, then it's not doing it, and with -r it is run twice on a failure for no real reason. Signed-off-by: William Giokas <1007380@gmail.com> Signed-off-by: Allan McRae --- scripts/makepkg.sh.in | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index da620a45..c2f89c97 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -1356,7 +1356,6 @@ error_function() { if (( ! BASH_SUBSHELL )); then error "$(gettext "A failure occurred in %s().")" "$1" plain "$(gettext "Aborting...")" - remove_deps fi exit 2 # $E_BUILD_FAILED } -- cgit v1.2.3-54-g00ecf