13 lines
479 B
Plaintext
13 lines
479 B
Plaintext
$OpenBSD: patch-src_audtool_Makefile,v 1.2 2012/03/20 19:10:18 stsp Exp $
|
|
prevents linker error if audacious2 is already installed
|
|
--- src/audtool/Makefile.orig Sun Feb 5 19:47:56 2012
|
|
+++ src/audtool/Makefile Sun Feb 5 19:48:41 2012
|
|
@@ -16,6 +16,4 @@ CPPFLAGS += -I.. -I../.. \
|
|
${DBUS_CFLAGS} \
|
|
${GTK_CFLAGS}
|
|
|
|
-LIBS += ${DBUS_LIBS} \
|
|
- -L../libaudclient -laudclient \
|
|
- ${GTK_LIBS}
|
|
+LIBS += -L../libaudclient -laudclient ${DBUS_LIBS} ${GTK_LIBS}
|