mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-07 18:08:12 +01:00
10 lines
199 B
Bash
10 lines
199 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
test -n "$srcdir" || srcdir=`dirname "$0"`
|
||
|
test -n "$srcdir" || srcdir=.
|
||
|
(
|
||
|
cd "$srcdir" &&
|
||
|
autoreconf --force -v --install
|
||
|
) || exit
|
||
|
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
|