Skip to content

Commit c433bad

Browse files
committed
Fix make tags warnings
`make tags` target tries to find C sources and headers in "Grammar" and "Mac" folders and generates these warnings: ctags: Warning: cannot open source file "Grammar/*.[ch]" : No such file or directory ctags: Warning: cannot open source file "Mac/*.[ch]" : No such file or directory This commit changes $SRCDIRS variable in configure.ac to remote these directories. This variable is used only for tags generation. Also, "configure" was regenerated with `autoreconf`.
1 parent 24c738a commit c433bad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16320,7 +16320,7 @@ do
1632016320
done
1632116321

1632216322

16323-
SRCDIRS="Parser Grammar Objects Python Modules Mac Programs"
16323+
SRCDIRS="Parser Objects Python Modules Programs"
1632416324
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for build directories" >&5
1632516325
$as_echo_n "checking for build directories... " >&6; }
1632616326
for dir in $SRCDIRS; do

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5200,7 +5200,7 @@ do
52005200
done
52015201

52025202
AC_SUBST(SRCDIRS)
5203-
SRCDIRS="Parser Grammar Objects Python Modules Mac Programs"
5203+
SRCDIRS="Parser Objects Python Modules Programs"
52045204
AC_MSG_CHECKING(for build directories)
52055205
for dir in $SRCDIRS; do
52065206
if test ! -d $dir; then

0 commit comments

Comments
 (0)