diff options
author | Daniel Stenberg <daniel@haxx.se> | 2009-11-04 12:33:06 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2009-11-04 12:33:06 +0000 |
commit | 367114bc87de772e39169000410eb76884291ec2 (patch) | |
tree | 7865a0152fa17ce429e61b3e81134d769977dbd0 /Makefile.am | |
parent | 81d45ed3a26297fde2e594b52723ec3df4e675ef (diff) | |
download | curl-367114bc87de772e39169000410eb76884291ec2.tar.gz |
avoid fiddling in the ares subdir since that isn't part of the release
tarball
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index ae74137af..a78647ddf 100644 --- a/Makefile.am +++ b/Makefile.am @@ -46,7 +46,7 @@ pkgconfig_DATA = libcurl.pc dist-hook: rm -rf $(top_builddir)/tests/log find $(distdir) -name "*.dist" -exec rm {} \; - (distit=`find $(srcdir) -name "*.dist"`; \ + (distit=`find $(srcdir) -name "*.dist | grep -v ./ares/"`; \ for file in $$distit; do \ strip=`echo $$file | sed -e s/^$(srcdir)// -e s/\.dist//`; \ cp $$file $(distdir)$$strip; \ |