From: John Darrington Date: Fri, 12 Dec 2003 08:24:42 +0000 (+0000) Subject: Fixed buglet where the default config path was getting set wrong X-Git-Tag: v0.4.0~468 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=commitdiff_plain;h=608859d57ed847296e950d795f3fa7e569f19a60 Fixed buglet where the default config path was getting set wrong --- diff --git a/config/Makefile.am b/config/Makefile.am index 9924e256..819801e6 100644 --- a/config/Makefile.am +++ b/config/Makefile.am @@ -1,6 +1,10 @@ ## Process this file with automake to produce Makefile.in -*- makefile -*- -pkgsysconfdir = $(sysconfdir)/$(PACKAGE) + +# If you change this, you must also change the corresponding line in +# src/Makefile.am +pkgsysconfdir = $(sysconfdir)/@PACKAGE@ + pkgsysconf_DATA = devices html-prologue papersize ps-prologue EXTRA_DIST = devices html-prologue papersize ps-prologue diff --git a/src/Makefile.am b/src/Makefile.am index 267414f4..70a93d2f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,6 +2,10 @@ # PSPP +# If you change this, you must also change the corresponding line in +# config/Makefile.am +pkgsysconfdir = $(sysconfdir)/@PACKAGE@ + bin_PROGRAMS = pspp INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src -I$(top_srcdir)/lib \