From 42942d4075cf239937c2db7297b7f7c53b4124bd Mon Sep 17 00:00:00 2001 From: rlar Date: Mon, 15 Aug 2016 17:08:25 +0200 Subject: [PATCH] fix install path for include files install in $includedir/ngspice which is by default $prefix/include/ngspice Thanks to Maciej Suminski who reported the issue in #327 Header files are installed in /usr/share/ngspice/include/ngspice https://sourceforge.net/p/ngspice/bugs/327/ --- src/include/ngspice/Makefile.am | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/include/ngspice/Makefile.am b/src/include/ngspice/Makefile.am index 216816ef8..fd7fec02c 100644 --- a/src/include/ngspice/Makefile.am +++ b/src/include/ngspice/Makefile.am @@ -1,11 +1,9 @@ ## Process this file with automake to produce Makefile.in -includedir = $(pkgdatadir)/include/ngspice - -nodist_include_HEADERS = \ +nodist_pkginclude_HEADERS = \ config.h -include_HEADERS = \ +pkginclude_HEADERS = \ tclspice.h \ acdefs.h \ bdrydefs.h \