summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2007-08-31 16:40:07 +0200
committerTakashi Iwai <tiwai@suse.de>2007-08-31 16:40:07 +0200
commitb04d1e18e42bc6471217818570703345b42645a2 (patch)
treed6d559f2fe0ded1de57def6bcc1b76e515369401
parentdcdf8c2a00b06139960e59fb85b444e8d7f556f9 (diff)
downloadalsa-lib-b04d1e18e42bc6471217818570703345b42645a2.tar.gz
Fix a typo
$PYTHON_INCDIR itself already contains -I
-rw-r--r--modules/mixer/simple/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mixer/simple/Makefile.am b/modules/mixer/simple/Makefile.am
index 38f106c0..1ab8c2e6 100644
--- a/modules/mixer/simple/Makefile.am
+++ b/modules/mixer/simple/Makefile.am
@@ -31,6 +31,6 @@ smixer_hda_la_LIBADD = ../../../src/libasound.la
if BUILD_PYTHON
smixer_python_la_SOURCES = python.c
smixer_python_la_LDFLAGS = -module -avoid-version $(pythonlibs)
-smixer_python_la_CFLAGS = -I$(pythonincdir)
+smixer_python_la_CFLAGS = $(pythonincdir)
smixer_python_la_LIBADD = ../../../src/libasound.la
endif