diff options
author | rubidium <rubidium@openttd.org> | 2009-08-05 15:10:37 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-08-05 15:10:37 +0000 |
commit | 808254c48894e010fc76870cf401da4a08ff233a (patch) | |
tree | f816849fa6a2dfd9aebbc3cde2a0283c90c6c64f /src | |
parent | 47b111449bd613148fd0c3169178da987f8a1fd6 (diff) | |
download | openttd-808254c48894e010fc76870cf401da4a08ff233a.tar.xz |
(svn r17072) -Fix: don't let squirrel export make a 'stub' for ai_changelog.hpp
Diffstat (limited to 'src')
-rwxr-xr-x | src/ai/api/squirrel_export.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ai/api/squirrel_export.sh b/src/ai/api/squirrel_export.sh index 3d228d838..2f28e12bb 100755 --- a/src/ai/api/squirrel_export.sh +++ b/src/ai/api/squirrel_export.sh @@ -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 |