Skip to content

Commit

Permalink
Fix Linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
barotto committed Dec 25, 2020
1 parent 7dfd564 commit f7bfe46
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Makefile.am
@@ -1,4 +1,4 @@
AM_CXXFLAGS = @CXX_DEFAULTS@ @BASECFLAGS@ -I$(top_srcdir)/src -DDATA_PATH=\"$(pkgdatadir)\"
AM_CXXFLAGS = @CXX_DEFAULTS@ -I$(top_srcdir)/src @BASECFLAGS@ -DDATA_PATH=\"$(pkgdatadir)\"

SUBDIRS = audio hardware gui

Expand Down
2 changes: 1 addition & 1 deletion src/audio/Makefile.am
@@ -1,4 +1,4 @@
AM_CXXFLAGS = @CXX_DEFAULTS@ @BASECFLAGS@ -I$(top_srcdir)/src
AM_CXXFLAGS = @CXX_DEFAULTS@ -I$(top_srcdir)/src @BASECFLAGS@

noinst_LIBRARIES = libaudio.a
libaudio_a_SOURCES = \
Expand Down
2 changes: 1 addition & 1 deletion src/gui/Makefile.am
@@ -1,4 +1,4 @@
AM_CXXFLAGS = @CXX_DEFAULTS@ @BASECFLAGS@ -I$(top_srcdir)/src
AM_CXXFLAGS = @CXX_DEFAULTS@ -I$(top_srcdir)/src @BASECFLAGS@


noinst_LIBRARIES = libgui.a
Expand Down
2 changes: 1 addition & 1 deletion src/hardware/Makefile.am
@@ -1,4 +1,4 @@
AM_CXXFLAGS = @CXX_DEFAULTS@ @BASECFLAGS@ -I$(top_srcdir)/src
AM_CXXFLAGS = @CXX_DEFAULTS@ -I$(top_srcdir)/src @BASECFLAGS@

noinst_LIBRARIES = libhardware.a
libhardware_a_SOURCES = \
Expand Down

0 comments on commit f7bfe46

Please sign in to comment.