File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1686,11 +1686,13 @@ DEFPATH=$(
16861686) || DEFPATH=/bin:/usr/bin:/sbin:/usr/sbin
16871687# Fix for Android/Termux. The /bin directory exists with standard
16881688# utilities (sh, Toybox utils) but it is not included in _PATH_DEFPATH.
1689- # It should come first because /bin is read-only.
1689+ # However, Android is so buggy that some stuff in /bin is broken (e.g.,
1690+ # invoking /bin/df produces a syntax error from the shell). Let /bin come
1691+ # last so broken binaries can be overridden.
16901692if test -d /data/data/com.termux && test "$(/bin/uname -o 2>/dev/null)" = Android
16911693then case ":$DEFPATH:" in
16921694 *:/bin:* ) ;;
1693- * ) DEFPATH=/bin: $DEFPATH ;;
1695+ * ) DEFPATH=$DEFPATH:/bin ;;
16941696 esac
16951697fi
16961698# Fix for NixOS. Not all POSIX standard utilities come with the default system,
Original file line number Diff line number Diff line change 11#
22# posix { getconf limits } macro table
33#
4- # @(#)conf.tab (ksh 93u+m) 2024-07-01
4+ # @(#)conf.tab (ksh 93u+m) 2025-04-11
55#
66# name standard call section flags [ header ... ] [ value ... ]
77#
You can’t perform that action at this time.
0 commit comments