summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authordjcb <djcb@djcbsoftware.nl>2012-11-17 21:21:59 +0200
committerdjcb <djcb@djcbsoftware.nl>2012-11-17 21:21:59 +0200
commite80050ec31f0ceee760be637e8f10edaf3a10a90 (patch)
tree0346a3053497e415c10bbe899b54151ed311b62f /Makefile.am
parenta82fecfb75cdda591bcca636367bc3ab479152a7 (diff)
* fix for `find' invocation for non-GNU find (thanks to Eygene Ryabinkin)
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index b62f0b4..300f777 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -46,7 +46,7 @@ tags:
# which is a sign that it needs some refactoring. requires the pmccabe
# tool. If all is fine, it outputs nothing
cc10:
- @$(PMCCABE) `find -name '*.c' -o -name '*.cc'` \
+ @$(PMCCABE) `find . -name '*.c' -o -name '*.cc'` \
| grep -v mu-str-normalize.c \
| grep -v mu_str_subject_normalize \
| grep -v tests \
@@ -57,7 +57,7 @@ cc10:
# all is fine, it outputs nothing
# note, some functions are exempted from this rule.
line35:
- @$(PMCCABE) -c `find -name '*.c' -o -name '*.cc'` \
+ @$(PMCCABE) -c `find . -name '*.c' -o -name '*.cc'` \
| grep -v mu-str-normalize.c \
| grep -v mu_str_subject_normalize \
| grep -v config_options_group_find \