]> git.eshelyaron.com Git - emacs.git/commitdiff
Detect developer builds in git worktrees as well
authorMattias Engdegård <mattiase@acm.org>
Fri, 29 Sep 2023 10:43:10 +0000 (12:43 +0200)
committerMattias Engdegård <mattiase@acm.org>
Fri, 29 Sep 2023 15:59:50 +0000 (17:59 +0200)
* configure.ac (gcc-warnings): Don't require .git to be a directory.
If you wondered why you didn't get any warnings, this may have been
the reason.

configure.ac

index 855c4ec7df1668700ae6253e7c84cb115195d6b7..f63eb870ffb469ea4d4f2a958ee538b623e03b68 100644 (file)
@@ -1664,7 +1664,7 @@ AC_ARG_ENABLE([gcc-warnings],
    # however, if there is also a .tarball-version file it is probably
    # just a release imported into Git for patch management.
    gl_gcc_warnings=no
-   if test -d "$srcdir"/.git && test ! -f "$srcdir"/.tarball-version; then
+   if test -e "$srcdir"/.git && test ! -f "$srcdir"/.tarball-version; then
       # Clang typically identifies itself as GCC 4.2 or something similar
       # even if it is recent enough to accept the warnings we enable.
       AS_IF([test "$emacs_cv_clang" = yes],