mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-07 18:08:12 +01:00
6e3254ea6e
- Add autogen.sh to bootstrap autotools generation - Make generation of man pages optional, and check for availibity of latex2man if documentation is requested. Signed-off-by: Olivier Fourdan <ofourdan@redhat.com> Signed-off-by: Arun Sharma <asharma@fb.com>
9 lines
199 B
Bash
Executable file
9 lines
199 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test -n "$srcdir" || srcdir=`dirname "$0"`
|
|
test -n "$srcdir" || srcdir=.
|
|
(
|
|
cd "$srcdir" &&
|
|
autoreconf --force -v --install
|
|
) || exit
|
|
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
|