diff options
author | jlam <jlam@pkgsrc.org> | 2005-04-28 22:16:31 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-04-28 22:16:31 +0000 |
commit | 1012ae7ffc50a4bf4e8bce8d154c3a8ffedd1efb (patch) | |
tree | c6ad446f53be20ec4ab6e6d07f7d59f125d73fdb /audio | |
parent | 12e799d380dff1369c51471907cbcbf1eddf873d (diff) | |
download | pkgsrc-1012ae7ffc50a4bf4e8bce8d154c3a8ffedd1efb.tar.gz |
Avoid using != to set RAWPART all of the time... we can defer it using :sh
to whenever CONFIGURE_ARGS is used.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/bmp/Makefile.common | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/audio/bmp/Makefile.common b/audio/bmp/Makefile.common index c502fc25a0e..7931c4671dc 100644 --- a/audio/bmp/Makefile.common +++ b/audio/bmp/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.9 2005/04/11 21:44:51 tv Exp $ +# $NetBSD: Makefile.common,v 1.10 2005/04/28 22:16:31 jlam Exp $ # DISTNAME= bmp-0.9.7 @@ -46,9 +46,9 @@ CONFIGURE_ARGS+= --with-xmms-eq .endif .if ${OPSYS} == "NetBSD" -RAWPART!= /sbin/sysctl -n kern.rawpartition | ${TR} 0-9 a-j -CONFIGURE_ARGS+= --with-dev-dsp=${DEVOSSSOUND} \ - --with-cdda-device=/dev/rcd0${RAWPART} \ +RAWPART_cmd= /sbin/sysctl -n kern.rawpartition | ${TR} 0-9 a-j +CONFIGURE_ARGS+= --with-dev-dsp=${DEVOSSSOUND} \ + --with-cdda-device=/dev/rcd0${RAWPART_cmd:sh} \ --with-cdda-dir=/cdrom/ post-extract: |