< prev index next >

make/autoconf/configure

Print this page
rev 53951 : 8219920: dependency help output in configure-step : support zypper tool

*** 1,8 **** #!/bin/bash # ! # Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # # This code is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2 only, as # published by the Free Software Foundation. --- 1,8 ---- #!/bin/bash # ! # Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # # This code is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2 only, as # published by the Free Software Foundation.
*** 76,91 **** --- 76,94 ---- autoconf_missing_help() { APT_GET="`which apt-get 2> /dev/null | grep -v '^no apt-get in'`" YUM="`which yum 2> /dev/null | grep -v '^no yum in'`" BREW="`which brew 2> /dev/null | grep -v '^no brew in'`" + ZYPPER="`which zypper 2> /dev/null | grep -v '^no zypper in'`" CYGWIN="`which cygpath 2> /dev/null | grep -v '^no cygpath in'`" if test "x$APT_GET" != x; then PKGHANDLER_COMMAND="sudo apt-get install autoconf" elif test "x$YUM" != x; then PKGHANDLER_COMMAND="sudo yum install autoconf" + elif test "x$ZYPPER" != x; then + PKGHANDLER_COMMAND="sudo zypper install autoconf" elif test "x$BREW" != x; then PKGHANDLER_COMMAND="brew install autoconf" elif test "x$CYGWIN" != x; then PKGHANDLER_COMMAND="( cd <location of cygwin setup.exe> && cmd /c setup -q -P autoconf )" fi
< prev index next >