Changeset - r12619:f877600b04a6
[Not reviewed]
master
0 1 0
rubidium - 15 years ago 2009-08-05 15:10:37
rubidium@openttd.org
(svn r17072) -Fix: don't let squirrel export make a 'stub' for ai_changelog.hpp
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/ai/api/squirrel_export.sh
Show inline comments
 
@@ -17,7 +17,7 @@ if [ -z "$1" ]; then
 
	for f in `ls *.hpp`; do
 
		case "${f}" in
 
			# these files should not be changed by this script
 
			"ai_controller.hpp" | "ai_object.hpp" | "ai_types.hpp" ) continue;
 
			"ai_controller.hpp" | "ai_object.hpp" | "ai_types.hpp" | "ai_changelog.hpp" ) continue;
 
		esac
 
		${AWK} -f squirrel_export.awk ${f} > ${f}.tmp
 
		if ! [ -f "${f}.sq" ] || [ -n "`diff -I '$Id' -b ${f}.tmp ${f}.sq 2> /dev/null || echo boo`" ]; then
0 comments (0 inline, 0 general)