/
githubmirror
/
libsmbios
Обзор
Документация
Войти
/
githubmirror
/
libsmbios
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
autogen.sh
29 строк
463 B
Tomáš Chvátal
Run autogen in verbose mode
09 мар 2017, 12:33
Не верифицирован
09 мар 2017, 12:33
7d3790f
Код
Авторство
О чём код?
#!/bin/bash # run this script to create all the autotools fluff. It will also run configure # unless told not to set -e CURDIR=$(pwd) SCRIPT_DIR=$(cd $(dirname $0); pwd) cd $SCRIPT_DIR autoreconf -v -i -f run_configure=true for arg in $*; do case $arg in --no-configure) run_configure=false ;; *) ;; esac done if test $run_configure = true; then cd $CURDIR $SCRIPT_DIR/configure "$@" fi