diff options
author | ben <ben@pkgsrc.org> | 2005-03-19 13:59:13 +0000 |
---|---|---|
committer | ben <ben@pkgsrc.org> | 2005-03-19 13:59:13 +0000 |
commit | ce8aa4d719cd439bfba22932b499245f453a865c (patch) | |
tree | c1bdf6b31e31d6128387723ab61f87d24e382012 /audio/libsndfile | |
parent | ab729f496d888c94ab9b5ef6ae2395ead3fba404 (diff) | |
download | pkgsrc-ce8aa4d719cd439bfba22932b499245f453a865c.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/libsndfile')
-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 |