diff options
author | uebayasi <uebayasi@pkgsrc.org> | 2005-02-14 09:07:51 +0000 |
---|---|---|
committer | uebayasi <uebayasi@pkgsrc.org> | 2005-02-14 09:07:51 +0000 |
commit | b409f11f3da73799edcf961f3e1dc175ff977dc3 (patch) | |
tree | 05363b567be33f24014702bb728a18d65a935f0b /chat | |
parent | 29e99fb7c6ace6c07eb2c6043fa5290cd5fafa96 (diff) | |
download | pkgsrc-b409f11f3da73799edcf961f3e1dc175ff977dc3.tar.gz |
Fix quoting.
Diffstat (limited to 'chat')
-rw-r--r-- | chat/centericq/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chat/centericq/Makefile b/chat/centericq/Makefile index 007787f27ac..69dbea2e2f6 100644 --- a/chat/centericq/Makefile +++ b/chat/centericq/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.45 2005/02/05 12:16:13 hubertf Exp $ +# $NetBSD: Makefile,v 1.46 2005/02/14 09:07:51 uebayasi Exp $ # DISTNAME= centericq-4.13.0 @@ -30,12 +30,12 @@ INCOMPAT_CURSES+= NetBSD-1.6_*-* NetBSD-1.6.[1-9]_*-* NetBSD-1.6[A-T]-* .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "NetBSD" -CPPFLAGS+= -DAUDIO_PLAYER=\"\\\"/usr/bin/audioplay\\\"\" +CPPFLAGS+= -DAUDIO_PLAYER="\"/usr/bin/audioplay\"" .else DEPENDS+= sox>=12.17.4:../../audio/sox SOX_PREFIX_DEFAULT= ${LOCALBASE} EVAL_PREFIX+= SOX_PREFIX=sox -CPPFLAGS+= -DAUDIO_PLAYER=\"\\\"${SOX_PREFIX}/bin/play\\\"\" +CPPFLAGS+= -DAUDIO_PLAYER="\"${SOX_PREFIX}/bin/play\"" .endif .if !empty(MACHINE_ARCH:Msparc64) |