summaryrefslogtreecommitdiff
path: root/Master/tlpkg/installer/config.guess
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2023-09-19 23:43:42 +0000
committerKarl Berry <karl@freefriends.org>2023-09-19 23:43:42 +0000
commit706e07793932f1c3b036fe098fd29032f62fc6cf (patch)
tree93bcba158890691c82f0be44e60dd47825d535b0 /Master/tlpkg/installer/config.guess
parent762dcf64233d5c8564751da077cfbf76beb2664f (diff)
tl-update-auto
git-svn-id: svn://tug.org/texlive/trunk@68326 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/installer/config.guess')
-rwxr-xr-xMaster/tlpkg/installer/config.guess8
1 files changed, 6 insertions, 2 deletions
diff --git a/Master/tlpkg/installer/config.guess b/Master/tlpkg/installer/config.guess
index b187213930f..cdfc4392047 100755
--- a/Master/tlpkg/installer/config.guess
+++ b/Master/tlpkg/installer/config.guess
@@ -4,7 +4,7 @@
# shellcheck disable=SC2006,SC2268 # see below for rationale
-timestamp='2023-07-20'
+timestamp='2023-08-22'
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
@@ -155,6 +155,9 @@ Linux|GNU|GNU/*)
set_cc_for_build
cat <<-EOF > "$dummy.c"
+ #if defined(__ANDROID__)
+ LIBC=android
+ #else
#include <features.h>
#if defined(__UCLIBC__)
LIBC=uclibc
@@ -169,6 +172,7 @@ Linux|GNU|GNU/*)
LIBC=musl
#endif
#endif
+ #endif
EOF
cc_set_libc=`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`
eval "$cc_set_libc"
@@ -904,7 +908,7 @@ EOF
fi
;;
*:FreeBSD:*:*)
- UNAME_PROCESSOR=`/usr/bin/uname -p`
+ UNAME_PROCESSOR=`uname -p`
case $UNAME_PROCESSOR in
amd64)
UNAME_PROCESSOR=x86_64 ;;