aboutsummaryrefslogtreecommitdiff
path: root/ares/Makefile.am
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-10-24 13:02:09 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-10-24 13:02:09 +0000
commit8e715af4806703230e3dab97b0d8865285d9151b (patch)
tree5be4cdb0200e7bd730bda472d8d2f1634af7ddcd /ares/Makefile.am
parent2730842559e4cb30a9997ca127c020c5857b97af (diff)
maketgz now creates a ares_version.h.dist file with the given version data
properly set, and the Makefile.am is now fixed to use that when building a new package with make dist.
Diffstat (limited to 'ares/Makefile.am')
-rw-r--r--ares/Makefile.am9
1 files changed, 9 insertions, 0 deletions
diff --git a/ares/Makefile.am b/ares/Makefile.am
index d60c9271c..10ed5c8d6 100644
--- a/ares/Makefile.am
+++ b/ares/Makefile.am
@@ -55,3 +55,12 @@ libcares_la_SOURCES = $(CSOURCES) $(HHEADERS)
libcares_ladir = $(includedir)
# what headers to install on 'make install':
libcares_la_HEADERS = ares.h ares_version.h
+
+# Make files named *.dist replace the file without .dist extension
+dist-hook:
+ find $(distdir) -name "*.dist" -exec rm {} \;
+ (distit=`find $(srcdir) -name "*.dist"`; \
+ for file in $$distit; do \
+ strip=`echo $$file | sed -e s/^$(srcdir)// -e s/\.dist//`; \
+ cp $$file $(distdir)$$strip; \
+ done)