Remove plat- prefix from MACHDEP macro;

instead it is added to MACHDEPPATH in Modules/Setup.in
This commit is contained in:
Guido van Rossum 1997-09-28 05:44:03 +00:00
parent 49f9d8e405
commit b97ef1768f
2 changed files with 7 additions and 7 deletions

8
configure vendored
View file

@ -1,6 +1,6 @@
#! /bin/sh
# From configure.in Revision: 1.65
# From configure.in Revision: 1.66
# Guess values for system-dependent variables and create Makefiles.
# Generated automatically using autoconf version 2.12
@ -577,7 +577,7 @@ fi
sed -e 's/://' -e 's/\./_/'` && \
ac_sys_system=next && ac_sys_release=$4
MACHDEP="plat-$ac_sys_system$ac_sys_release"
MACHDEP="$ac_sys_system$ac_sys_release"
fi
fi
@ -597,10 +597,10 @@ then
tr -d '/ ' | tr '[A-Z]' '[a-z]'`
ac_md_release=`echo $ac_sys_release |
tr -d '/ ' | sed 's/\..*//'`
MACHDEP="plat-$ac_md_system$ac_md_release"
MACHDEP="$ac_md_system$ac_md_release"
case $MACHDEP in
'') MACHDEP="plat-unknown";;
'') MACHDEP="unknown";;
esac
fi
echo "$ac_t""$MACHDEP" 1>&6

View file

@ -28,7 +28,7 @@ if test -f /usr/lib/NextStep/software_version; then
sed -e 's/://' -e 's/\./_/'` && \
ac_sys_system=next && ac_sys_release=$4
MACHDEP="plat-$ac_sys_system$ac_sys_release"
MACHDEP="$ac_sys_system$ac_sys_release"
fi
fi
@ -47,10 +47,10 @@ then
tr -d '[/ ]' | tr '[[A-Z]]' '[[a-z]]'`
ac_md_release=`echo $ac_sys_release |
tr -d '[/ ]' | sed 's/\..*//'`
MACHDEP="plat-$ac_md_system$ac_md_release"
MACHDEP="$ac_md_system$ac_md_release"
case $MACHDEP in
'') MACHDEP="plat-unknown";;
'') MACHDEP="unknown";;
esac
fi
AC_MSG_RESULT($MACHDEP)