summaryrefslogtreecommitdiff
path: root/build_tools.sh
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2019-08-27 09:15:44 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2019-08-27 09:15:44 -0400
commit40c1db11067a152865db10f2f5399354a4268c91 (patch)
treefe0f74e2ea6d701d959009d0449a8a9e7304e1fb /build_tools.sh
parent4541b959b624e8298e9791d69dfac5630cd6a122 (diff)
Update deprecated build_tools script
Diffstat (limited to 'build_tools.sh')
-rwxr-xr-xbuild_tools.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/build_tools.sh b/build_tools.sh
index 675207b96..93f6065be 100755
--- a/build_tools.sh
+++ b/build_tools.sh
@@ -1,8 +1,8 @@
#!/bin/sh
-echo "This script is deprecated. Run \"make tools\" instead."
+echo "This script is deprecated. Next time, run \"make tools\" instead."
for dname in tools/*; do
- if [[ -f ${dname}/Makefile ]]; then
- make -C ${dname} CXX=${1:-g++}
+ if [ -f ${dname}/Makefile ]; then
+ make -C ${dname} CXX=${1:-g++} --no-print-directory
fi
done