diff options
author | ben <ben> | 2005-03-19 13:59:13 +0000 |
---|---|---|
committer | ben <ben> | 2005-03-19 13:59:13 +0000 |
commit | b285de99206916b30b2b20fb931894b843cfa675 (patch) | |
tree | c1bdf6b31e31d6128387723ab61f87d24e382012 /audio | |
parent | 655fe536399e649883cd902884b79073ada45004 (diff) | |
download | pkgsrc-b285de99206916b30b2b20fb931894b843cfa675.tar.gz |
I incorrectly tested my previous change, and it turns out that with
USE_OSS defined, the build process does require the original escaping.
Revert to original escaping in OSS_DEFS.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/libsndfile/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/libsndfile/Makefile b/audio/libsndfile/Makefile index 360ae6a24b7..240d778712a 100644 --- a/audio/libsndfile/Makefile +++ b/audio/libsndfile/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2005/02/24 03:37:28 ben Exp $ +# $NetBSD: Makefile,v 1.28 2005/03/19 13:59:13 ben Exp $ DISTNAME= libsndfile-1.0.11 CATEGORIES= audio @@ -24,7 +24,7 @@ CONFIGURE_ENV+= F77=${FALSE} .if defined(USE_OSS) . include "../../mk/ossaudio.buildlink3.mk" -OSS_DEFS= -DDEV_DSP="\"${DEVOSSAUDIO}\"" -DUSE_OSS=1 +OSS_DEFS= -DDEV_DSP=\\\"${DEVOSSAUDIO}\\\" -DUSE_OSS=1 MAKE_ENV+= AM_CFLAGS="${OSS_DEFS}" .endif |