From ff196d112f6bf90712d65bd888eeaf8b24a7df35 Mon Sep 17 00:00:00 2001 From: maxice8 Date: Thu, 31 Jan 2019 15:20:03 -0200 Subject: [PATCH] 05-rename-python3-c-bindings.sh: fix --- common/hooks/pre-pkg/05-rename-python3-c-bindings.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/hooks/pre-pkg/05-rename-python3-c-bindings.sh b/common/hooks/pre-pkg/05-rename-python3-c-bindings.sh index f3a90146b2..c16b69d013 100644 --- a/common/hooks/pre-pkg/05-rename-python3-c-bindings.sh +++ b/common/hooks/pre-pkg/05-rename-python3-c-bindings.sh @@ -11,6 +11,6 @@ hook() { filename="${file##*/}" modulename="${filename%%.*}" msg_warn "${pkgver}: renamed '${filename}' to '${modulename}.so'.\n" - mv ${file} ${file%/*}${modulename}.so + mv ${file} ${file%/*}/${modulename}.so done }