Browse Source

fixed torcs (delete lingering x86 objects files before the build)

(and indented the file correctly)


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1836 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
e9f4100104
2 changed files with 8 additions and 5 deletions
  1. +1
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +7
    -5
      package/kasc/torcs/torcs.conf

+ 1
- 0
Documentation/Developers/CHANGELOG-RENE

@ -2,6 +2,7 @@
*) 2003-11-22 (2.0.0-rc3 - 2.0.0-rc4)
- flagged powermanga to be x86 only
- fixed torcs (delete lingering x86 objects files before the build)
*) 2003-11-21 (2.0.0-rc3 - 2.0.0-rc4)

+ 7
- 5
package/kasc/torcs/torcs.conf

@ -28,11 +28,13 @@ runconf=1
torcs_preconf()
{
for x in $archdir/TORCS-$ver-src-robots* ; do
echo "Extracting ${x##$archdir/} ($taropt)..."
tar $taropt $x
done
cd torcs-$ver
for x in $archdir/TORCS-$ver-src-robots* ; do
echo "Extracting ${x##$archdir/} ($taropt)..."
tar $taropt $x
done
cd torcs-$ver
# delete lingering x86 object files ...
find -name '*.o' | xargs rm -fv
}
preconf=torcs_preconf

Loading…
Cancel
Save