diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2021-01-12 15:43:54 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2021-01-12 15:43:54 +0100 |
commit | a40ddf5c616465a93287e4ac41a98d04b4fb2b37 (patch) | |
tree | 5f7c0ac5cbc3331fe8834de645ce580a9fbfc447 /Makefile.in | |
parent | d774f6d721b0e52ed800c4b9a3a482c8ce9dd074 (diff) |
Build: Fix tags generation
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index da6cd206..e0ff4a1d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -194,10 +194,10 @@ static-scan: $(Q)scan-build $(STATIC_SCAN_FLAGS) $(MAKE) -$(MAKEFLAGS) tags: - cd $(srcdir) ; etags -lc `find $(dirs) -name *.[chY]` + cd $(srcdir) ; etags -lc `find $(dirs) -name '*.[chY]'` cscope: - cd $(srcdir) ; find $(dirs) -name *.[chY] > cscope.files ; cscope -b + cd $(srcdir) ; find $(dirs) -name '*.[chY]' > cscope.files ; cscope -b # Install |