diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2012-08-08 21:07:45 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2012-08-08 21:07:45 -0300 |
commit | bd113233f08244e919302d0ea5e3acc771365910 (patch) | |
tree | 86cf9ae2aec482e107abb0055a1c950f41805627 /libre/ghostscript-libre | |
parent | 484a50344e5f051a2938beeb1855d7f671cb6f09 (diff) |
ghostscript-libre-9.06-1: fixing issues on xargs operand
Diffstat (limited to 'libre/ghostscript-libre')
-rw-r--r-- | libre/ghostscript-libre/PKGBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libre/ghostscript-libre/PKGBUILD b/libre/ghostscript-libre/PKGBUILD index da8816f16..656f49fb5 100644 --- a/libre/ghostscript-libre/PKGBUILD +++ b/libre/ghostscript-libre/PKGBUILD @@ -26,8 +26,8 @@ build() { cd ${srcdir}/ghostscript-${pkgver} # delete non-free packages - grep -l "are not altered" Resource/CMap/* | xargs rm -v - grep -l "not be copied" Resource/CMap/* | xargs rm -v + grep -l "are not altered" Resource/CMap/* | xargs rm -fv + grep -l "not be copied" Resource/CMap/* | xargs rm -fv # force it to use system-libs rm -rf jpeg libpng zlib jasper expat tiff lcms freetype |