diff options
author | uebayasi <uebayasi> | 2005-03-07 09:41:45 +0000 |
---|---|---|
committer | uebayasi <uebayasi> | 2005-03-07 09:41:45 +0000 |
commit | 8aa436b2c353e99c9af7dc60613c32e7c13e1ea6 (patch) | |
tree | 4939745ced01b78361ccf75b8a5a17736977b8e8 /emulators | |
parent | fc5b90d5c00392f4c94941ca5a7215481aafce41 (diff) | |
download | pkgsrc-8aa436b2c353e99c9af7dc60613c32e7c13e1ea6.tar.gz |
Fix quoting.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/darcnes/Makefile.common | 4 | ||||
-rw-r--r-- | emulators/fmsx/Makefile | 6 | ||||
-rw-r--r-- | emulators/wine/Makefile | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/emulators/darcnes/Makefile.common b/emulators/darcnes/Makefile.common index 885d7f25a28..f9a9ed7aea0 100644 --- a/emulators/darcnes/Makefile.common +++ b/emulators/darcnes/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.5 2004/07/20 10:02:50 grant Exp $ +# $NetBSD: Makefile.common,v 1.6 2005/03/07 09:48:36 uebayasi Exp $ DISTNAME= dn9b0401 CATEGORIES= emulators @@ -26,7 +26,7 @@ MAKE_FLAGS+= NO_MULTIPLE_COMMON_WARNING=-DNO_MULTIPLE_COMMON_WARNING .endif .if ( ${MACHINE_ARCH} == "i386" ) -MAKE_FLAGS+= MACH_TYPES=-DMACH_TYPES=\\\"types-i386.h\\\" +MAKE_FLAGS+= MACH_TYPES=-DMACH_TYPES="\"types-i386.h\"" .else MAKE_FLAGS+= C_ONLY=-DC_ONLY .endif diff --git a/emulators/fmsx/Makefile b/emulators/fmsx/Makefile index 84a1819df03..b34679a58e9 100644 --- a/emulators/fmsx/Makefile +++ b/emulators/fmsx/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2004/11/27 00:33:32 martin Exp $ +# $NetBSD: Makefile,v 1.12 2005/03/07 09:48:36 uebayasi Exp $ DISTNAME= fMSX24.tar PKGNAME= fmsx-2.4 @@ -21,8 +21,8 @@ USE_X11= yes .include "../../mk/bsd.prefs.mk" USE_SUN_AUDIO?= YES -DEFS= -DFontDir=\"\\\"${PREFIX}/share/fmsx/\"\\\" -DEFS+= -DRomDir=\"\\\"${PREFIX}/share/fmsx/\"\\\" +DEFS= -DFontDir="\"${PREFIX}/share/fmsx/\"" +DEFS+= -DRomDir="\"${PREFIX}/share/fmsx/\"" DEFS+= -DMITSHM -D${CUR_DEPTH} -DSOUND .if ${USE_SUN_AUDIO} == "YES" DEFS+= -DSUN_AUDIO diff --git a/emulators/wine/Makefile b/emulators/wine/Makefile index 262cc616412..27226fa710c 100644 --- a/emulators/wine/Makefile +++ b/emulators/wine/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.78 2005/02/16 12:22:11 adam Exp $ +# $NetBSD: Makefile,v 1.79 2005/03/07 09:48:36 uebayasi Exp $ DISTNAME= Wine-20050211 PKGNAME= ${DISTNAME:S/W/w/} @@ -39,7 +39,7 @@ REPLACE_PERL= tools/winemaker tools/winedump/function_grep.pl # against the libraries. # CONFIGURE_ENV+= X_LIBS="${LDFLAGS}" -CONFIGURE_ENV+= CFLAGS="${CFLAGS} -DDEVOSSAUDIO=\"\\\"${DEVOSSAUDIO}\\\"\"" +CONFIGURE_ENV+= CFLAGS="${CFLAGS} -DDEVOSSAUDIO="\"${DEVOSSAUDIO}\"" LIBS+= ${LDFLAGS} .include "../../mk/bsd.prefs.mk" |