From 90baa6a25132d807e956186957b6e7f7d1e69a80 Mon Sep 17 00:00:00 2001 From: rlar Date: Sat, 10 May 2014 15:25:09 +0200 Subject: [PATCH] xspice, fix -I path order make sure $(top_builddir)/src/include comes first to fetch the correct ngspice/config.h file --- src/xspice/icm/makedefs.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xspice/icm/makedefs.in b/src/xspice/icm/makedefs.in index 011d245f0..fd23a4364 100644 --- a/src/xspice/icm/makedefs.in +++ b/src/xspice/icm/makedefs.in @@ -17,7 +17,7 @@ CC = @CC@ CFLAGS = @CFLAGS@ # Spice header include path -INCLUDES = -I$(top_srcdir)/src/include -I$(top_builddir)/src/include +INCLUDES = -I$(top_builddir)/src/include -I$(top_srcdir)/src/include # CFLAGS to use here EXTRA_CFLAGS = -fPIC