Permalink
Cannot retrieve contributors at this time
executable file
17 lines (14 sloc)
332 Bytes
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
PWD= | |
case "$0" in | |
*/*) srcdir=`dirname $0`;; | |
*) srcdir="";; | |
esac | |
symlink='--install --symlink' | |
case " $* " in | |
*" -i "*|*" --install "*) | |
# reset to copy missing standard auxiliary files, instead of symlinks | |
symlink= | |
;; | |
esac | |
exec ${AUTORECONF:-autoreconf} ${symlink} "$@" ${srcdir:+"$srcdir"} |