diff options
author | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2018-09-06 19:59:25 -0400 |
---|---|---|
committer | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2018-09-06 19:59:25 -0400 |
commit | 5b774a68eb4aa78a85e7c5e0e85ff54d65f4f1be (patch) | |
tree | 58734c9a86ecd690edd01f6b8712c0943c109323 | |
parent | 9e7848f6784c12821f82f19170fe9d72912f1587 (diff) | |
download | random-seed-5b774a68eb4aa78a85e7c5e0e85ff54d65f4f1be.tar.xz random-seed-5b774a68eb4aa78a85e7c5e0e85ff54d65f4f1be.zip |
simplify autogen.sh
-rwxr-xr-x | autogen.sh | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |