diff options
| author | Pip Cet <pipcet@protonmail.com> | 2025-01-17 17:13:29 +0000 |
|---|---|---|
| committer | Pip Cet <pipcet@protonmail.com> | 2025-01-17 17:22:45 +0000 |
| commit | 2a00bedeaef0a0caf8c810842c524b5c46de06ed (patch) | |
| tree | 68c6a245bb5b48e6fd4df4d250bae553f477fa5a /autogen.sh | |
| parent | 91b2b3654f2dcf79c15a11cfe1130df6638b4a4e (diff) | |
Fix build on Solaris 10 (bug#75451)
* autogen.sh: Avoid bashism.
* configure.ac (AC_PROG_AWK): Use.
* src/Makefile.in (AWK): Set.
(dmpstruct.h): Use "$(AWK)", not "awk".
* src/dired.c (DT_UNKNOWN, DT_DIR, DT_LNK): Define all three constants
or none of them.
Diffstat (limited to 'autogen.sh')
| -rwxr-xr-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index 00c20c73263..b46d1e6c90a 100755 --- a/autogen.sh +++ b/autogen.sh @@ -115,7 +115,7 @@ do_check=true do_autoconf=false do_git=false -for arg; do +for arg in "$@"; do case $arg in --help) exec echo "$0: usage: $0 [--no-check] [target...] |
