1
0
Fork 0

Merge commit 'origin/releases/2.2.0' into releases/2.2.0

This commit is contained in:
James Turner 2011-01-14 20:09:50 +00:00
commit 9c8e68e7bf
2 changed files with 31 additions and 1 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
dist
.DS_Store

View file

@ -1,2 +1,30 @@
#!/bin/sh
echo "Write me!"
cd simgear
./autogen.sh
./configure --prefix=$WORKSPACE/dist --with-osg=$WORKSPACE/dist
make
if [ $? -ne '0' ]; then
echo "make simgear failed"
exit 1
fi
make install
make dist
echo "Starting on FlightGear"
cd ../flightgear
./autogen.sh
./configure --prefix=$WORKSPACE/dist --with-osg=$WORKSPACE/dist
make
if [ $? -ne '0' ]; then
echo "make flightgear failed"
exit 1
fi
make install
make dist