Browse Source

replace more incorrect $(top_builddir) with $(top_srcdir)

pull/5/head
Karl Lindén 11 years ago
parent
commit
bcc82b85cb
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Makefile.am

+ 2
- 2
Makefile.am View File

@@ -151,12 +151,12 @@ jack_netsource_LDADD = $(top_builddir)/libjack/libjack.la
if HAVE_SAMPLERATE
if HAVE_ALSA
alsa_in_SOURCES = alsa_in.c $(top_srcdir)/drivers/alsa/memops.c
alsa_in_CFLAGS = @NETJACK_CFLAGS@ -I$(top_builddir)/drivers/alsa
alsa_in_CFLAGS = @NETJACK_CFLAGS@ -I$(top_srcdir)/drivers/alsa
alsa_in_LDFLAGS = -lasound -lsamplerate @OS_LDFLAGS@
alsa_in_LDADD = $(top_builddir)/libjack/libjack.la

alsa_out_SOURCES = alsa_out.c $(top_srcdir)/drivers/alsa/memops.c
alsa_out_CFLAGS = @NETJACK_CFLAGS@ -I$(top_builddir)/drivers/alsa
alsa_out_CFLAGS = @NETJACK_CFLAGS@ -I$(top_srcdir)/drivers/alsa
alsa_out_LDFLAGS = -lasound -lsamplerate @OS_LDFLAGS@
alsa_out_LDADD = $(top_builddir)/libjack/libjack.la
endif #HAVE_ALSA


Loading…
Cancel
Save