summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2009-11-04 12:34:48 +0000
committerDaniel Stenberg <daniel@haxx.se>2009-11-04 12:34:48 +0000
commit6bf9d564856c76a54147d313decd81d1b3445d7d (patch)
treed513e0009139a5d6af11652f284d647ae0c4d95d
parent367114bc87de772e39169000410eb76884291ec2 (diff)
downloadgnurl-6bf9d564856c76a54147d313decd81d1b3445d7d.tar.gz
gnurl-6bf9d564856c76a54147d313decd81d1b3445d7d.tar.bz2
gnurl-6bf9d564856c76a54147d313decd81d1b3445d7d.zip
fix the find command linecurl-7_19_7
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index a78647ddf..ca60e9057 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 | grep -v ./ares/"`; \
+ (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; \