Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1c608e3

Browse files
committed
Fix find command in makefile “funny” target
1 parent ef1e94a commit 1c608e3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile.pre.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1283,7 +1283,7 @@ smelly: all
12831283

12841284
# Find files with funny names
12851285
funny:
1286-
find $(DISTDIRS) \
1286+
find $(SUBDIRS) $(SUBDIRSTOO) \
12871287
-name .svn -prune \
12881288
-o -type d \
12891289
-o -name '*.[chs]' \
@@ -1313,7 +1313,7 @@ funny:
13131313
-o -name .hgignore \
13141314
-o -name .bzrignore \
13151315
-o -name MANIFEST \
1316-
-o -print
1316+
-print
13171317

13181318
# Perform some verification checks on any modified files.
13191319
patchcheck:

0 commit comments

Comments
 (0)