1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-25 19:46:21 +00:00

Add LDEARCH environment variable to override config.guess host-triple in bin/machinetype (debug aid)

modified:   bin/machinetype
This commit is contained in:
Nick Briggs
2020-08-27 21:40:42 -07:00
parent ee00d0e567
commit 623594fb89

View File

@@ -9,8 +9,7 @@
# #
#########################################################################
os=`./config.guess`
os=${LDEARCH:-`./config.guess`}
# o/s switch block
case "$os" in
sparc-*) echo sparc ;;
@@ -22,6 +21,5 @@ case "$os" in
powerpc-*) echo ppc ;;
esac
### Don't leave the variables set.
unset os