diff options
author | rillig <rillig@pkgsrc.org> | 2005-11-04 11:58:54 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-11-04 11:58:54 +0000 |
commit | 7fe72478c065f71c08a73b7670295fd3c548032d (patch) | |
tree | 4ed06f53cd08caffaf49994c458ab19ee6277a45 /graphics | |
parent | 98b45c1de408a974c971d2974623b02620c9d815 (diff) | |
download | pkgsrc-7fe72478c065f71c08a73b7670295fd3c548032d.tar.gz |
Replaced the "!" in the sed expression with a ",". This might have been
the cause for PR 31953, but I'm not sure. At least, "!" is some special
character for the shell whereas "," is not.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/png/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/png/Makefile b/graphics/png/Makefile index 720cac84fc8..178b96cb5a8 100644 --- a/graphics/png/Makefile +++ b/graphics/png/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.70 2005/04/11 21:46:08 tv Exp $ +# $NetBSD: Makefile,v 1.71 2005/11/04 11:58:54 rillig Exp $ # On update, don't forget to increase shared library major/minor's in # accordance with changes (patch-aa). @@ -36,7 +36,7 @@ PKGCONFIG_OVERRIDE= scripts/libpng.pc.in SUBST_CLASSES= pc SUBST_STAGE.pc= post-patch SUBST_FILES.pc= scripts/libpng.pc.in -SUBST_SED.pc= s\!@PREFIX@!${PREFIX}! +SUBST_SED.pc= -e 's,@PREFIX@,${PREFIX},' SUBST_MESSAGE.pc= "Fixing libpng.pc.in." post-install: |