diff options
author | June McEnroe <june@causal.agency> | 2017-07-30 23:19:30 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2017-07-30 23:19:30 -0400 |
commit | 80dadfb7533136f7c4631875dc4b9cc089a00f66 (patch) | |
tree | 292ca5c79514c15c64c796f8d14002b944d409a4 | |
parent | Persist bright across color changes (diff) | |
download | torus-80dadfb7533136f7c4631875dc4b9cc089a00f66.tar.gz torus-80dadfb7533136f7c4631875dc4b9cc089a00f66.zip |
Optimize builds for chroot
-rwxr-xr-x | chroot.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chroot.sh b/chroot.sh index fe4442a..2b0bc4a 100755 --- a/chroot.sh +++ b/chroot.sh @@ -1,9 +1,9 @@ #!/bin/sh set -e -u -x -./server.c -./client.c -./help.c +./server.c -O3 +./client.c -O3 +./help.c -O3 if [ ! -f termcap.db ]; then patch -p0 -o termcap < termcap.diff |