Check that we have bash before running updatelfuns.sh

Also set executable bits on the devel scripts.
This commit is contained in:
Guillaume Munch 2016-01-07 23:42:21 +00:00
parent 626f8d4448
commit a8ad43d4fd
14 changed files with 6 additions and 0 deletions

0
development/tools/convert_kmap.py Normal file → Executable file
View File

0
development/tools/count_lines_of_included_code.sh Normal file → Executable file
View File

0
development/tools/designer43to42 Normal file → Executable file
View File

0
development/tools/generate_symbols_images.py Normal file → Executable file
View File

0
development/tools/generate_symbols_list.py Normal file → Executable file
View File

0
development/tools/list_included_headers.sh Normal file → Executable file
View File

0
development/tools/lyx-fedora Normal file → Executable file
View File

0
development/tools/mergepo.py Normal file → Executable file
View File

0
development/tools/unicodesymbols.py Normal file → Executable file
View File

0
development/tools/update-po.sh Normal file → Executable file
View File

0
development/tools/updatedocs.py Normal file → Executable file
View File

0
development/tools/updatelayouts.py Normal file → Executable file
View File

6
development/tools/updatelfuns.sh Normal file → Executable file
View File

@ -1,5 +1,11 @@
#!/bin/bash
if [ -z "$BASH_VERSION" ]; then
# http://article.gmane.org/gmane.editors.lyx.devel/159697
echo "You must use bash to run this script";
exit 1;
fi
function do_convert {
for i in *; do
if [ ! -f $i ]; then continue; fi

0
development/tools/updatestats.sh Normal file → Executable file
View File