From de03c74f12e95d905cc787e3814270a773d01bea Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 23 Sep 2013 20:34:07 -0400 Subject: fullpkg-find: fiddle with some of the quoting, it was tripping up xgettext --- src/fullpkg/fullpkg-find | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fullpkg/fullpkg-find b/src/fullpkg/fullpkg-find index fd6a107..007c53c 100755 --- a/src/fullpkg/fullpkg-find +++ b/src/fullpkg/fullpkg-find @@ -78,7 +78,7 @@ copy_files() { for i in 'changelog' 'install'; do while read -r file; do # evaluate any bash variables used - eval file=\"$(sed 's/^\(['\''"]\)\(.*\)\1$/\2/' <<< "$file")\" + eval file=\"$(sed "s/^\\(['\"]\\)\\(.*\\)\\1\$/\\2/" <<< "$file")\" [[ -f $file ]] && cp "$file" "$copydir" done < <(sed -n "s/^[[:space:]]*$i=//p" PKGBUILD) done -- cgit v1.2.2