3f66f6a5b3
This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
34 lines
1.1 KiB
Bash
Executable File
34 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# check_syntax.sh - a small script to search for interface headers with
|
|
# missing semicolons (they give troubles to Doxygen).
|
|
# Author: Francesco Montorsi
|
|
|
|
|
|
rm -f missing_semicolons
|
|
|
|
# the preprocessor will remove comments and all #preprocessor #stuff;
|
|
# we then remove the empty lines
|
|
for iface in wx/*h; do
|
|
|
|
echo "--- $iface ---" >>missing_semicolons
|
|
|
|
gcc -E $iface | grep -v '#' | grep -v '^[[:space:]]*$' >temp
|
|
|
|
# now remove the lines which ends with a comma or a semicolon; they're ok
|
|
cat temp | grep -v '.*;$' | grep -v '.*,$' >temp2
|
|
|
|
# now search for methods; we know they should always contain at least two () brackets!
|
|
cat temp2 | grep '(' >>missing_semicolons
|
|
|
|
# now remove the lines which shouldn't have final comma or semicolon:
|
|
# cat temp2 | grep -v '^[[:space:]]*wx[A-Z]*[[:space:]]*$' >temp
|
|
# cat temp | grep -v 'class' | grep -v 'enum' | grep -v 'template' | \
|
|
# grep -v 'struct' | grep -v 'typedef' | \
|
|
# grep -v 'public:' | grep -v 'protected:' | grep -v 'private:' | \
|
|
# grep -v '{' | grep -v '}' >>missing_semicolons
|
|
|
|
done
|
|
|
|
rm temp temp2
|