]> granicus.if.org Git - python/commitdiff
Remove plat- prefix from MACHDEP macro;
authorGuido van Rossum <guido@python.org>
Sun, 28 Sep 1997 05:44:03 +0000 (05:44 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 28 Sep 1997 05:44:03 +0000 (05:44 +0000)
instead it is added to MACHDEPPATH in Modules/Setup.in

configure
configure.in

index a1b82e929bad0ec00c3e47313bfb8f6ae2ce7a03..18beffbad0ca2603cb3eb41f8a87bd6c99c4eb20 100755 (executable)
--- a/configure
+++ b/configure
@@ -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
index 38ae566c6b9e123f0267d7b6536a17e65dc27e0c..640969ed018417f8d29ff2ac1b9d4106e120fcde 100644 (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)