configure: Add no-op for "disable-option-checking" option.
This is a standard option supported in autoconf. In Debian systems using recent versions of debhelper this argument is be passed to configure by default. See <https://bugs.debian.org/942813> for more information. * configure (parse-opts): Ignore disable-option-checking.
This commit is contained in:
parent
191d822e95
commit
35892ae074
13
configure
vendored
13
configure
vendored
|
@ -5,6 +5,7 @@ MES_ARENA=100000000 exec ${SCHEME-guile} -L . --no-auto-compile -e '(configure)'
|
||||||
|
|
||||||
;;; GNU Mes --- Maxwell Equations of Software
|
;;; GNU Mes --- Maxwell Equations of Software
|
||||||
;;; Copyright © 2016,2017,2018,2019,2020,2021 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
;;; Copyright © 2016,2017,2018,2019,2020,2021 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||||
|
;;; Copyright © 2020 Vagrant Cascadian <vagrant@reproducible-builds.org>
|
||||||
;;;
|
;;;
|
||||||
;;; configure: This file is part of GNU Mes.
|
;;; configure: This file is part of GNU Mes.
|
||||||
;;;
|
;;;
|
||||||
|
@ -322,13 +323,13 @@ MES_ARENA=100000000 exec ${SCHEME-guile} -L . --no-auto-compile -e '(configure)'
|
||||||
(with-system-libc)
|
(with-system-libc)
|
||||||
|
|
||||||
(enable-fast-install) ; Ignored for Guix
|
(enable-fast-install) ; Ignored for Guix
|
||||||
(mandir (value #t)) ; Ignored for Debian
|
|
||||||
(localstatedir (value #t)) ; Ignored for Debian
|
|
||||||
(libexecdir (value #t)) ; Ignored for Debian
|
|
||||||
(runstatedir (value #t)) ; Ignored for Debian
|
|
||||||
(disable-maintainer-mode) ; Ignored for Debian
|
|
||||||
(disable-dependency-tracking) ; Ignored for Debian
|
(disable-dependency-tracking) ; Ignored for Debian
|
||||||
)))
|
(disable-maintainer-mode) ; Ignored for Debian
|
||||||
|
(disable-option-checking) ; Ignored for Debian
|
||||||
|
(libexecdir (value #t)) ; Ignored for Debian
|
||||||
|
(localstatedir (value #t)) ; Ignored for Debian
|
||||||
|
(mandir (value #t)) ; Ignored for Debian
|
||||||
|
(runstatedir (value #t))))) ; Ignored for Debian
|
||||||
|
|
||||||
(getopt-long args option-spec)))
|
(getopt-long args option-spec)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue