diff options
author | obache <obache@pkgsrc.org> | 2012-04-28 13:15:33 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2012-04-28 13:15:33 +0000 |
commit | ca418d7a2c9f48e8b9af60398d9ff258baed4807 (patch) | |
tree | 2b43bb77ab9faa0a3d2b249eb745607ac586a821 /games | |
parent | 2d1e94450a999cf89ce56292ede03807675272f2 (diff) | |
download | pkgsrc-ca418d7a2c9f48e8b9af60398d9ff258baed4807.tar.gz |
Change sed pattern to be acceptable with GNU sed.
Fixes installation location issue by PR 37689.
Diffstat (limited to 'games')
-rw-r--r-- | games/quake2forge/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/quake2forge/Makefile b/games/quake2forge/Makefile index 465be9fcf4c..2def40d3349 100644 --- a/games/quake2forge/Makefile +++ b/games/quake2forge/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2011/06/27 10:03:38 obache Exp $ +# $NetBSD: Makefile,v 1.26 2012/04/28 13:15:33 obache Exp $ # DISTNAME= quake2-0.3 @@ -33,7 +33,7 @@ SUBST_SED.snd= -e "s,/dev/dsp,${DEVOSSAUDIO},g" SUBST_MESSAGE.snd= Fixing hardcoded audio device. SUBST_STAGE.data= post-patch SUBST_FILES.data= configure -SUBST_SED.data= -e "s|PACKAGE=\'quake2\'|PACKAGE=\'${PKGBASE}\'|g" +SUBST_SED.data= -e s,PACKAGE=\'quake2\',PACKAGE=\'${PKGBASE}\',g SUBST_MESSAGE.data= Fixing installation directories. .include "../../mk/bsd.prefs.mk" |