Skip to content
Permalink
master
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
executable file 17 lines (14 sloc) 332 Bytes
#!/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"}