summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2018-09-06 19:59:25 -0400
committerAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2018-09-06 19:59:25 -0400
commit5b774a68eb4aa78a85e7c5e0e85ff54d65f4f1be (patch)
tree58734c9a86ecd690edd01f6b8712c0943c109323
parent9e7848f6784c12821f82f19170fe9d72912f1587 (diff)
downloadrandom-seed-5b774a68eb4aa78a85e7c5e0e85ff54d65f4f1be.tar.xz
random-seed-5b774a68eb4aa78a85e7c5e0e85ff54d65f4f1be.zip
simplify autogen.sh
-rwxr-xr-xautogen.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/autogen.sh b/autogen.sh
index 4bbaa55..6adb3dc 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,10 +1,10 @@
#!/bin/sh
# SPDX-License-Identifier: BSD-3-Clause
-set -e
+set -e -x
-{ ${AUTOHEADER:-autoheader} && touch config.h; } &
-${ACLOCAL:-aclocal} -I m4 --install && touch aclocal.m4
-${AUTOCONF:-autoconf} && touch configure
+${AUTOHEADER:-autoheader} -f &
+${ACLOCAL:-aclocal} -I m4 --force --install
+${AUTOCONF:-autoconf} -i -f
wait