Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kirill Smelkov
cpython
Commits
b97ef176
Commit
b97ef176
authored
27 years ago
by
Guido van Rossum
Browse files
Options
Download
Email Patches
Plain Diff
Remove plat- prefix from MACHDEP macro;
instead it is added to MACHDEPPATH in Modules/Setup.in
parent
49f9d8e4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
configure
configure
+4
-4
configure.in
configure.in
+3
-3
No files found.
configure
View file @
b97ef176
#! /bin/sh
#! /bin/sh
# From configure.in Revision: 1.6
5
# From configure.in Revision: 1.6
6
# 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
...
@@ -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
=
"
plat-
$ac_sys_system$ac_sys_release
"
MACHDEP
=
"
$ac_sys_system$ac_sys_release
"
fi
fi
fi
fi
...
@@ -597,10 +597,10 @@ then
...
@@ -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
=
"
plat-
$ac_md_system$ac_md_release
"
MACHDEP
=
"
$ac_md_system$ac_md_release
"
case
$MACHDEP
in
case
$MACHDEP
in
''
)
MACHDEP
=
"
plat-
unknown"
;;
''
)
MACHDEP
=
"unknown"
;;
esac
esac
fi
fi
echo
"
$ac_t
""
$MACHDEP
"
1>&6
echo
"
$ac_t
""
$MACHDEP
"
1>&6
...
...
This diff is collapsed.
Click to expand it.
configure.in
View file @
b97ef176
...
@@ -28,7 +28,7 @@ if test -f /usr/lib/NextStep/software_version; then
...
@@ -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="
plat-
$ac_sys_system$ac_sys_release"
MACHDEP="$ac_sys_system$ac_sys_release"
fi
fi
fi
fi
...
@@ -47,10 +47,10 @@ then
...
@@ -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="
plat-
$ac_md_system$ac_md_release"
MACHDEP="$ac_md_system$ac_md_release"
case $MACHDEP in
case $MACHDEP in
'') MACHDEP="
plat-
unknown";;
'') MACHDEP="unknown";;
esac
esac
fi
fi
AC_MSG_RESULT($MACHDEP)
AC_MSG_RESULT($MACHDEP)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment