diff options
author | bapt <bapt@FreeBSD.org> | 2014-06-16 06:40:31 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-06-16 06:40:31 +0800 |
commit | cf26975a80b6ebbe84d54c5c0d14677642062032 (patch) | |
tree | 142cf371596cab1a5eb600bb6c21cb785f8c790b /Keywords | |
parent | 1b59ca4c9f55a88c8ad4137e8bd276e344f4868e (diff) | |
download | freebsd-ports-gnome-cf26975a80b6ebbe84d54c5c0d14677642062032.tar.gz freebsd-ports-gnome-cf26975a80b6ebbe84d54c5c0d14677642062032.tar.zst freebsd-ports-gnome-cf26975a80b6ebbe84d54c5c0d14677642062032.zip |
Remove another extra '`'
Reported by: antoine
Diffstat (limited to 'Keywords')
-rw-r--r-- | Keywords/pkg_install.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Keywords/pkg_install.awk b/Keywords/pkg_install.awk index ac1d24c16cf8..0ade65f02668 100644 --- a/Keywords/pkg_install.awk +++ b/Keywords/pkg_install.awk @@ -64,7 +64,7 @@ $1 == "@fcfontsdir" { print "@unexec mkfontscale %D/" font_dir " 2>/dev/null || true" print "@unexec if [ -e %D/%@/fonts.scale -a \"`stat -f '%%z' %D/" font_dir "/fonts.scale 2>/dev/null`\" = '2' ]; then rm %D/" font_dir "/fonts.scale ; fi" print "@unexec mkfontdir %D/" font_dir " 2>/dev/null || true" - print "@unexec if [ -e %D/" font_dir "/fonts.dir -a `\"`stat -f '%%z' %D/" font_dir "/fonts.dir 2>/dev/null`\" = '2' ]; then rm %D/" font_dir "/fonts.dir ; fi" + print "@unexec if [ -e %D/" font_dir "/fonts.dir -a \"`stat -f '%%z' %D/" font_dir "/fonts.dir 2>/dev/null`\" = '2' ]; then rm %D/" font_dir "/fonts.dir ; fi" print "@unexec rmdir %D/"font_dir" 2>/dev/null || true" print "@comment end " $0 next |