summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-01-04 10:55:51 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-01-04 10:55:51 -0500
commit9cff97ea2560cb7c7b5d57eb228d173f703a0666 (patch)
tree22ac7cd41f4d5a6924b9ab3644e2cca34b7d20c6
parentaf5f17aa5ae91e507c454dd65996934d76103084 (diff)
speed up `make .git.info.exclude`
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 160a64c..f6dcd17 100644
--- a/Makefile
+++ b/Makefile
@@ -15,8 +15,8 @@ clean:
.folders: Maildir
( echo '..'; find ~/Maildir -maxdepth 2 -type f -name "maildirfolder" -printf '%h\n'|sed -r 's@.*/(.*\.)(.*)@.\1\2@' )|sort>'$@'
-.git.info.exclude: .git.info.exclude.in .
- ( cat $<; find . -type f -name 'CACHEDIR.TAG' -printf '%h\n'|sed 's@^\./@/@' ) > $@
+.git.info.exclude: .git.info.exclude.in $(shell echo .??*/)
+ ( cat $<; find $^ -type f -name 'CACHEDIR.TAG' -printf '%h\n'|sed 's@^\./@/@' ) > $@
.crontab.cookie: .crontab .crontab.local
-(cat $^; echo) | crontab - 2>/dev/null