From 9d5519ad7916eb21e79b7dddf31e80e399a475fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Wed, 3 Feb 2021 22:09:21 +0000 Subject: [PATCH] Unset overridden functions at the end of build function. --- sysa/helpers.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sysa/helpers.sh b/sysa/helpers.sh index d3fc090..7e0ed68 100755 --- a/sysa/helpers.sh +++ b/sysa/helpers.sh @@ -54,6 +54,8 @@ build () { echo "${pkg}: build successful" cd .. + + unset -f src_unpack src_prepare src_configure src_compile src_install } # Default unpacking function that unpacks a single source tarball.