From c6e47cb435988494f978c603eb12db97cfc88b3e Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sun, 10 Jun 2012 12:19:07 -0400 Subject: updpkgsums: avoid fancy quoting in error message m4 has a field day parsing escapes and actually vandalizes this string, causing the error to look like: ==> ERROR: \PKGBUILD\ not found or is not a file Avoid all quoting and just match up with how makepkg reports errors (no quoting at all). Signed-off-by: Dave Reisner Signed-off-by: Dan McGee --- contrib/updpkgsums.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib/updpkgsums.sh.in') diff --git a/contrib/updpkgsums.sh.in b/contrib/updpkgsums.sh.in index f4649b54..38c82810 100755 --- a/contrib/updpkgsums.sh.in +++ b/contrib/updpkgsums.sh.in @@ -43,7 +43,7 @@ esac buildfile=${1:-PKGBUILD} if [[ ! -f $buildfile ]]; then - printf $'==> ERROR: \`%s\' not found or is not a file: %s\n' "$buildfile" + printf '==> ERROR: %s not found or is not a file: %s\n' "$buildfile" exit 1 fi -- cgit v1.2.3-24-g4f1b