diff options
author | Roger Dingledine <arma@torproject.org> | 2004-11-01 06:40:49 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-11-01 06:40:49 +0000 |
commit | 3e03602b9fc40c907d1917061a58ba87af84978c (patch) | |
tree | 4c2fdaf2b49c214b555fbfa63f42b46c973da9d6 /autogen.sh | |
parent | 28d977731b84498920056fbc7c6cf8007c314e67 (diff) | |
download | tor-3e03602b9fc40c907d1917061a58ba87af84978c.tar.gz tor-3e03602b9fc40c907d1917061a58ba87af84978c.zip |
make our autogen.sh work on ksh as well as bash
svn:r2635
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/autogen.sh b/autogen.sh index 92239bf3fc..354d71433a 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,7 +1,7 @@ #!/bin/sh # Run this to generate all the initial makefiles, etc. -aclocal && - autoheader && - autoconf && - automake --add-missing --copy && +aclocal && \ + autoheader && \ + autoconf && \ + automake --add-missing --copy && \ ./configure |