diff options
author | Mukund Sivaraman <muks@banu.com> | 2011-08-23 14:46:04 +0530 |
---|---|---|
committer | Mukund Sivaraman <muks@banu.com> | 2011-08-23 14:46:04 +0530 |
commit | 32563a4ed68b6dae29f37c024bca246db7d7e029 (patch) | |
tree | 9d21f05a6751388a022b62e40da2d34b8dafd487 /etc/Makefile.am | |
parent | ec86c15d5a57df34e13149a878cb3f2be8819f06 (diff) |
Bug #103: Move files installed in /etc/ to /etc/tinyproxy/
Diffstat (limited to 'etc/Makefile.am')
-rw-r--r-- | etc/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/etc/Makefile.am b/etc/Makefile.am index 9cf6d5c..57a5c01 100644 --- a/etc/Makefile.am +++ b/etc/Makefile.am @@ -1,4 +1,6 @@ -sysconf_DATA = \ +pkgsysconfdir = $(sysconfdir)/$(PACKAGE) + +pkgsysconf_DATA = \ tinyproxy.conf EXTRA_DIST = \ @@ -8,7 +10,7 @@ edit = sed \ -e 's|@bindir[@]|$(bindir)|g' \ -e 's|@datadir[@]|$(datadir)|g' \ -e 's|@datarootdir[@]|$(datarootdir)|g' \ - -e 's|@sysconfdir[@]|$(sysconfdir)|g' \ + -e 's|@pkgsysconfdir[@]|$(pkgsysconfdir)|g' \ -e 's|@localstatedir[@]|$(localstatedir)|g' \ -e 's|@pkgdatadir[@]|$(pkgdatadir)|g' \ -e 's|@prefix[@]|$(prefix)|g' \ |