Update of /cvsroot/plplot/plplot/bindings/python
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5827
Modified Files:
Makefile.am
Log Message:
-I$(NUMERICINCCMD) ==> $(NUMERICINCCMD)
This was a bug I introduced in yesterday's changes.
Index: Makefile.am
===================================================================
RCS file: /cvsroot/plplot/plplot/bindings/python/Makefile.am,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- Makefile.am 30 Jun 2004 07:29:16 -0000 1.34
+++ Makefile.am 30 Jun 2004 17:11:06 -0000 1.35
@@ -74,7 +74,7 @@
# NUMERICINCCMD only required until we quit supporting python 1.5
# X_CFLAGS required (on some platforms, e.g., netbsd) by plplot_widgetmodule.c
-AM_CPPFLAGS = $(INCLTDL) $(PYTHONINCCMD) -I$(NUMERICINCCMD) $(X_CFLAGS)
+AM_CPPFLAGS = $(INCLTDL) $(PYTHONINCCMD) $(NUMERICINCCMD) $(X_CFLAGS)
# For Mac OS X/fink we have found that dropping -no-undefined $(PYTHON_LDFLAGS)
# solves an unknown linking problem that causes python to be unable to import
|