From 18a8a3c690a0338ec235b8691b2c5aab19d1cea8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20W=C3=B3jcik?= Date: Mon, 26 Aug 2019 21:32:38 +0200 Subject: [PATCH] xbps-src: Actually unset subpkg functions --- common/xbps-src/shutils/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/xbps-src/shutils/common.sh b/common/xbps-src/shutils/common.sh index d258509d878..d0e455471ea 100644 --- a/common/xbps-src/shutils/common.sh +++ b/common/xbps-src/shutils/common.sh @@ -237,7 +237,7 @@ run_pkg_hooks() { unset_package_funcs() { local f - for f in "$(typeset -F)"; do + for f in $(typeset -F); do case "$f" in *_package) unset -f "$f"