autogen.sh
来自「PSlib是一个用来生成PostScript文件的类库。提供了一个生成PostS」· Shell 代码 · 共 47 行
SH
47 行
#!/bin/sh## autogen.sh glue for pslib# $Id: autogen.sh,v 1.6 2007/10/30 07:37:24 steinm Exp $## Requires: automake, autoconf, dpkg-devset -e# Refresh GNU autotools toolchain.for i in config.guess config.sub missing install-sh mkinstalldirs ; do test -r /usr/share/automake/${i} && { rm -f ${i} cp /usr/share/automake/${i} . } chmod 755 ${i}donelibtoolize --force --copyaclocalautoheaderautomake --verbose --force --copy --add-missingintltoolize --copy --forceautoconf# For the Debian buildtest -d debian && { # Kill executable list first rm -f debian/executable.files # Make sure our executable and removable lists won't be screwed up debclean && echo Cleaned buildtree just in case... # refresh list of executable scripts, to avoid possible breakage if # upstream tarball does not include the file or if it is mispackaged # for whatever reason. echo Generating list of executable files... rm -f debian/executable.files find -type f -perm +111 ! -name '.*' -fprint debian/executable.files # link these in Debian builds# rm -f config.sub config.guess# ln -s /usr/share/misc/config.sub .# ln -s /usr/share/misc/config.guess .}exit 0
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?