diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-11 21:22:41 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-11 21:22:41 +0000 |
commit | 9c741aa0ab5670b4666046bc75936d5a5a0bf9b0 (patch) | |
tree | 5f015d9cc4bc889c456f3dda64bc394a12123e1d /emulators/fmsx | |
parent | 8eca28e38a7f38fd3a664b68ba042efc59655d43 (diff) | |
download | pkgsrc-9c741aa0ab5670b4666046bc75936d5a5a0bf9b0.tar.gz |
Fixed the build error introduced by the late pkglint patch by quoting
the -D defines in the DEFS variable correctly.
Diffstat (limited to 'emulators/fmsx')
-rw-r--r-- | emulators/fmsx/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emulators/fmsx/Makefile b/emulators/fmsx/Makefile index cea9b846ab8..1426401f0b2 100644 --- a/emulators/fmsx/Makefile +++ b/emulators/fmsx/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2005/12/05 20:50:11 rillig Exp $ +# $NetBSD: Makefile,v 1.17 2005/12/11 21:22:41 rillig Exp $ DISTNAME= fMSX24.tar PKGNAME= fmsx-2.4 @@ -20,8 +20,8 @@ WRKSRC= ${WRKDIR}/MSX .include "../../mk/bsd.prefs.mk" USE_SUN_AUDIO?= YES -DEFS= -DFontDir=\"\\\"${PREFIX}/share/fmsx/\"\\\" -DEFS+= -DRomDir=\"\\\"${PREFIX}/share/fmsx/\"\\\" +DEFS= -DFontDir=\"${PREFIX:Q}/share/fmsx/\" +DEFS+= -DRomDir=\"${PREFIX:Q}/share/fmsx/\" DEFS+= -DMITSHM -D${CUR_DEPTH} -DSOUND .if ${USE_SUN_AUDIO} == "YES" DEFS+= -DSUN_AUDIO |