📄 regenconf.sh
字号:
#!/bin/sh######################################################################## File: regenconf.sh## Purpose: to regenerate autotools files## Version: $Id: regenconf.sh,v 1.12 2004/07/02 13:54:12 cary Exp $## Copyright 2003, Tech-X Corporation######################################################################## Get rid of old filesecho Remaking all configuration filesmydir=`dirname $0`# Creating new files for this platformfor i in aclocal \ autoheader \ "rm -rf autom4te.cache autom4te-*.cache" \ autoconf \ config/automake.sh; do echo $i $idone# See if libtoolize should be runres=`grep LIBTOOL configure.in`if test -n "$res"; then ver=`grep VERSION= config/ltmain.sh | sed 's/VERSION=//'` # echo version is $ver echo Redoing libtoolize if [ "`uname`" == "Darwin" ] then # cmd="glibtoolize --force --copy" # JRC: trying libtool 1.5.4 cmd="libtoolize --force --copy" else cmd="libtoolize --force --copy" fi echo $cmd $cmdfi
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -