]> git.eshelyaron.com Git - emacs.git/commitdiff
; Make configure work on Solaris after last change
authorMattias Engdegård <mattiase@acm.org>
Sat, 30 Sep 2023 08:38:48 +0000 (10:38 +0200)
committerMattias Engdegård <mattiase@acm.org>
Sat, 30 Sep 2023 09:11:12 +0000 (11:11 +0200)
* configure.ac: Solaris /bin/sh doesn't have `test -e`.

configure.ac

index f63eb870ffb469ea4d4f2a958ee538b623e03b68..e406863178db0580399f1913cce60d5e9ac6edeb 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 -e "$srcdir"/.git && test ! -f "$srcdir"/.tarball-version; then
+   if test -d "$srcdir"/.git -o -f "$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],