diff options
author | jlam <jlam@pkgsrc.org> | 2001-06-12 20:33:00 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-06-12 20:33:00 +0000 |
commit | 328a35f96fe7ec11093e3847c0943eb3a41f2b51 (patch) | |
tree | 154e7feac1d9bd8853bbdc9b7ffa45c13b83f32f /audio/splay | |
parent | 8848ee6991e29c3c0d97e1c89906ee2b34645484 (diff) | |
download | pkgsrc-328a35f96fe7ec11093e3847c0943eb3a41f2b51.tar.gz |
LIBS is automatically added to CONFIGURE_ENV by bsd.pkg.mk if
GNU_CONFIGURE is defined, so simply set LIBS to the appropriate value.
Diffstat (limited to 'audio/splay')
-rw-r--r-- | audio/splay/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/splay/Makefile b/audio/splay/Makefile index 7c70d5d01be..0e806590cf7 100644 --- a/audio/splay/Makefile +++ b/audio/splay/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2001/02/16 13:30:50 wiz Exp $ +# $NetBSD: Makefile,v 1.12 2001/06/12 20:33:01 jlam Exp $ # FreeBSD Id: Makefile,v 1.4 1997/08/09 23:37:33 fenner Exp # @@ -21,6 +21,6 @@ NOT_FOR_PLATFORM= *-*-sparc *-*-m68k *-*-macppc *-*-sparc64 GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-xsplay --without-pthread -CONFIGURE_ENV= LIBS="${LIBS} -lossaudio" +LIBS+= -lossaudio .include "../../mk/bsd.pkg.mk" |