Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c2fcbf4

Browse files
committed
https link to the bug tracker (closes #27670)
1 parent 43a94a7 commit c2fcbf4

2 files changed

Lines changed: 22 additions & 10 deletions

File tree

configure

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Guess values for system-dependent variables and create Makefiles.
33
# Generated by GNU Autoconf 2.69 for python 3.5.
44
#
5-
# Report bugs to <http://bugs.python.org/>.
5+
# Report bugs to <https://bugs.python.org/>.
66
#
77
#
88
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -267,7 +267,7 @@ fi
267267
$as_echo "$0: be upgraded to zsh 4.3.4 or later."
268268
else
269269
$as_echo "$0: Please tell [email protected] and
270-
$0: http://bugs.python.org/ about your system, including
270+
$0: https://bugs.python.org/ about your system, including
271271
$0: any error possibly output before this message. Then
272272
$0: install a modern shell, or manually run the script
273273
$0: under such a shell if you do have one."
@@ -582,7 +582,7 @@ PACKAGE_NAME='python'
582582
PACKAGE_TARNAME='python'
583583
PACKAGE_VERSION='3.5'
584584
PACKAGE_STRING='python 3.5'
585-
PACKAGE_BUGREPORT='http://bugs.python.org/'
585+
PACKAGE_BUGREPORT='https://bugs.python.org/'
586586
PACKAGE_URL=''
587587

588588
ac_unique_file="Include/object.h"
@@ -774,6 +774,7 @@ infodir
774774
docdir
775775
oldincludedir
776776
includedir
777+
runstatedir
777778
localstatedir
778779
sharedstatedir
779780
sysconfdir
@@ -884,6 +885,7 @@ datadir='${datarootdir}'
884885
sysconfdir='${prefix}/etc'
885886
sharedstatedir='${prefix}/com'
886887
localstatedir='${prefix}/var'
888+
runstatedir='${localstatedir}/run'
887889
includedir='${prefix}/include'
888890
oldincludedir='/usr/include'
889891
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
@@ -1136,6 +1138,15 @@ do
11361138
| -silent | --silent | --silen | --sile | --sil)
11371139
silent=yes ;;
11381140

1141+
-runstatedir | --runstatedir | --runstatedi | --runstated \
1142+
| --runstate | --runstat | --runsta | --runst | --runs \
1143+
| --run | --ru | --r)
1144+
ac_prev=runstatedir ;;
1145+
-runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \
1146+
| --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \
1147+
| --run=* | --ru=* | --r=*)
1148+
runstatedir=$ac_optarg ;;
1149+
11391150
-sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
11401151
ac_prev=sbindir ;;
11411152
-sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
@@ -1273,7 +1284,7 @@ fi
12731284
for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
12741285
datadir sysconfdir sharedstatedir localstatedir includedir \
12751286
oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
1276-
libdir localedir mandir
1287+
libdir localedir mandir runstatedir
12771288
do
12781289
eval ac_val=\$$ac_var
12791290
# Remove trailing slashes.
@@ -1426,6 +1437,7 @@ Fine tuning of the installation directories:
14261437
--sysconfdir=DIR read-only single-machine data [PREFIX/etc]
14271438
--sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
14281439
--localstatedir=DIR modifiable single-machine data [PREFIX/var]
1440+
--runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run]
14291441
--libdir=DIR object code libraries [EPREFIX/lib]
14301442
--includedir=DIR C header files [PREFIX/include]
14311443
--oldincludedir=DIR C header files for non-gcc [/usr/include]
@@ -1545,7 +1557,7 @@ Some influential environment variables:
15451557
Use these variables to override the choices made by `configure' or to help
15461558
it to find libraries and programs with nonstandard names/locations.
15471559
1548-
Report bugs to <http://bugs.python.org/>.
1560+
Report bugs to <https://bugs.python.org/>.
15491561
_ACEOF
15501562
ac_status=$?
15511563
fi
@@ -1813,9 +1825,9 @@ $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
18131825
$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;}
18141826
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
18151827
$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
1816-
( $as_echo "## -------------------------------------- ##
1817-
## Report this to http://bugs.python.org/ ##
1818-
## -------------------------------------- ##"
1828+
( $as_echo "## --------------------------------------- ##
1829+
## Report this to https://bugs.python.org/ ##
1830+
## --------------------------------------- ##"
18191831
) | sed "s/^/$as_me: WARNING: /" >&2
18201832
;;
18211833
esac
@@ -16868,7 +16880,7 @@ $config_files
1686816880
Configuration headers:
1686916881
$config_headers
1687016882
16871-
Report bugs to <http://bugs.python.org/>."
16883+
Report bugs to <https://bugs.python.org/>."
1687216884
1687316885
_ACEOF
1687416886
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ m4_define(PYTHON_VERSION, 3.5)
77

88
AC_PREREQ(2.65)
99

10-
AC_INIT(python, PYTHON_VERSION, http://bugs.python.org/)
10+
AC_INIT(python, PYTHON_VERSION, https://bugs.python.org/)
1111

1212
AC_SUBST(BASECPPFLAGS)
1313
if test "$abs_srcdir" != "$abs_builddir"; then

0 commit comments

Comments
 (0)