diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-05-02 18:12:32 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-05-02 18:12:32 +0000 |
commit | 50058c1cabaa2493d24084d91c10df855594c70c (patch) | |
tree | 93a95b54b412c443b7b4029108dfe0b942ed6354 | |
parent | 42ef3b86b64bc4f645f2c7d105cd3c894c685c9b (diff) | |
download | tinyproxy-50058c1cabaa2493d24084d91c10df855594c70c.tar.gz tinyproxy-50058c1cabaa2493d24084d91c10df855594c70c.zip |
Proper handling of the tinyproxy.conf location within the source tree
(needed for make distcheck.)
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 065df86..62453c5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,10 +3,10 @@ SUBDIRS = src doc install-data-local: $(mkinstalldirs) $(DESTDIR)@TINYPROXY_CONFIG_DIR@ - $(INSTALL) -m 600 doc/tinyproxy.conf \ + $(INSTALL) -m 600 $(srcdir)/doc/tinyproxy.conf \ $(DESTDIR)@TINYPROXY_CONFIG_DIR@/@TINYPROXY_CONFIG_FILE@-dist test ! -f $(DESTDIR)@TINYPROXY_CONFIG_DIR@/@TINYPROXY_CONFIG_FILE@ \ - && $(INSTALL) -m 600 doc/tinyproxy.conf \ + && $(INSTALL) -m 600 $(srcdir)/doc/tinyproxy.conf \ $(DESTDIR)@TINYPROXY_CONFIG_DIR@/@TINYPROXY_CONFIG_FILE@ @echo "" @echo "A configuration file has been copied to:" |