mirror of
https://git.gnunet.org/libmicrohttpd.git
synced 2026-09-25 04:09:31 +03:00
removed unneeded 'aclocal' execution, removed '-f' autoreconf argument, added wrapper script autogen.sh
12 lines
254 B
Bash
Executable File
12 lines
254 B
Bash
Executable File
#!/bin/sh
|
|
unset bs_srcdir
|
|
if test X"`dirname / 2>/dev/null`" = X"/"; then
|
|
bs_scrdir=`dirname $0`
|
|
else
|
|
bs_scrdir="${0%/*}"
|
|
fi
|
|
|
|
test -n "$bs_scrdir" && cd "$bs_scrdir" || echo "Warning: cannot get sources directory" 1>&2
|
|
|
|
autoreconf -I m4 -i ${1+"$@"}
|