mirror of
https://github.com/nilfs-dev/nilfs-utils.git
synced 2026-01-26 05:37:51 +00:00
27 lines
398 B
Bash
Executable File
27 lines
398 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Run this before configure
|
|
#
|
|
|
|
die() {
|
|
echo
|
|
echo "Error: $*"
|
|
exit 1
|
|
}
|
|
|
|
aclocal || die "aclocal failed"
|
|
|
|
autoheader || die "autoheader failed"
|
|
|
|
libtoolize -c --force || die "libtoolize failed"
|
|
|
|
automake -a -c || die "automake failed"
|
|
|
|
echo
|
|
echo "Creating configure..."
|
|
|
|
autoconf || die "autoconf failed"
|
|
|
|
echo
|
|
echo "Now run './configure' and 'make' to compile nilfs-utils."
|