Skip to content

Commit

Permalink
Update deprecated build_tools script
Browse files Browse the repository at this point in the history
  • Loading branch information
PikalaxALT committed Aug 27, 2019
1 parent 4541b95 commit 40c1db1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build_tools.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 40c1db1

Please sign in to comment.