Files @ r18221:469c025ee860
Branch filter:

Location: cpp/openttd-patchpack/source/os/dos/make_dos_binary_selfcontained.sh

rubidium
(svn r23067) -Fix [FS#4812]: updating the group statistics got more strict checks, so there was some trouble moving a vehicles and groups from one company to another
#!/bin/sh

# $Id$

cd `dirname $0`
cc -o exe2coff exe2coff.c || exit
cp $1 binary.exe || exit
./exe2coff binary.exe || exit
cat cwsdstub.exe binary > binary.exe || exit
mv binary.exe $1
rm binary exe2coff