mirror of https://github.com/python/cpython
Prefix MACHDEP directory with 'plat-'.
This commit is contained in:
parent
ab61c6b290
commit
bbd6152fec
|
@ -1,6 +1,6 @@
|
||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
|
|
||||||
# From configure.in Revision: 1.64
|
# From configure.in Revision: 1.65
|
||||||
|
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated automatically using autoconf version 2.12
|
# Generated automatically using autoconf version 2.12
|
||||||
|
@ -577,7 +577,7 @@ fi
|
||||||
sed -e 's/://' -e 's/\./_/'` && \
|
sed -e 's/://' -e 's/\./_/'` && \
|
||||||
ac_sys_system=next && ac_sys_release=$4
|
ac_sys_system=next && ac_sys_release=$4
|
||||||
|
|
||||||
MACHDEP="$ac_sys_system$ac_sys_release"
|
MACHDEP="plat-$ac_sys_system$ac_sys_release"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -597,10 +597,10 @@ then
|
||||||
tr -d '/ ' | tr '[A-Z]' '[a-z]'`
|
tr -d '/ ' | tr '[A-Z]' '[a-z]'`
|
||||||
ac_md_release=`echo $ac_sys_release |
|
ac_md_release=`echo $ac_sys_release |
|
||||||
tr -d '/ ' | sed 's/\..*//'`
|
tr -d '/ ' | sed 's/\..*//'`
|
||||||
MACHDEP="$ac_md_system$ac_md_release"
|
MACHDEP="plat-$ac_md_system$ac_md_release"
|
||||||
|
|
||||||
case $MACHDEP in
|
case $MACHDEP in
|
||||||
'') MACHDEP=unknown;;
|
'') MACHDEP="plat-unknown";;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
echo "$ac_t""$MACHDEP" 1>&6
|
echo "$ac_t""$MACHDEP" 1>&6
|
||||||
|
|
|
@ -28,7 +28,7 @@ if test -f /usr/lib/NextStep/software_version; then
|
||||||
sed -e 's/://' -e 's/\./_/'` && \
|
sed -e 's/://' -e 's/\./_/'` && \
|
||||||
ac_sys_system=next && ac_sys_release=$4
|
ac_sys_system=next && ac_sys_release=$4
|
||||||
|
|
||||||
MACHDEP="$ac_sys_system$ac_sys_release"
|
MACHDEP="plat-$ac_sys_system$ac_sys_release"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -47,10 +47,10 @@ then
|
||||||
tr -d '[/ ]' | tr '[[A-Z]]' '[[a-z]]'`
|
tr -d '[/ ]' | tr '[[A-Z]]' '[[a-z]]'`
|
||||||
ac_md_release=`echo $ac_sys_release |
|
ac_md_release=`echo $ac_sys_release |
|
||||||
tr -d '[/ ]' | sed 's/\..*//'`
|
tr -d '[/ ]' | sed 's/\..*//'`
|
||||||
MACHDEP="$ac_md_system$ac_md_release"
|
MACHDEP="plat-$ac_md_system$ac_md_release"
|
||||||
|
|
||||||
case $MACHDEP in
|
case $MACHDEP in
|
||||||
'') MACHDEP=unknown;;
|
'') MACHDEP="plat-unknown";;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
AC_MSG_RESULT($MACHDEP)
|
AC_MSG_RESULT($MACHDEP)
|
||||||
|
|
Loading…
Reference in New Issue