Ignore autotools ./configure flgs for GNOME Continuous: Closes #719874

Probably also useful for other automated build systems.
This commit is contained in:
Colin Walters 2013-12-09 17:05:40 -08:00 committed by Jim Nelson
parent 3eaa1dcb8f
commit ff1f7b179b
2 changed files with 7 additions and 0 deletions

1
THANKS
View file

@ -34,5 +34,6 @@ Janosch Rolles <janosch@rolles.org>
Michel Alexandre Salim <salimma@fedoraproject.org>
Anirudh Sanjeev <skyronic@gmail.com>
Wolfgang Steitz <wolfer7@web.de>
Colin Walters <walters@verbum.org>
Alexander Wilms <alexander.wilms@zoho.com>

6
configure vendored
View file

@ -68,6 +68,12 @@ do
CMDLINE="${CMDLINE} -DCMAKE_INSTALL_PREFIX=${value}"
;;
# ignored for autotools compatibility
--bindir | --libdir | --sbindir |--datadir | --localstatedir | --includedir) ;;
--infodir | --sysconfdir | --mandir | --libexecdir) ;;
--build | --host | --target) ;;
--disable-silent-rules | --disable-static ) ;;
--debug)
CMDLINE="${CMDLINE} -DDEBUG=ON"
;;