File: sed-linux.sh

package info (click to toggle)
tuxtype 1.8.3-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 19,916 kB
  • sloc: ansic: 12,311; xml: 10,049; sh: 3,502; makefile: 1,494; sed: 16
file content (14 lines) | stat: -rwxr-xr-x 426 bytes parent folder | download | duplicates (22)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
# This is a quick kludge to get the x,y coordinates right in the xml scripts
# this file resets the coordinates in case you previously built a windows distribution
# both files may be removed once SDL_Pango is working in the windows cross-build

echo -e "Editing lesson scripts for a non-windows build...\n"

touch fixed-linux

sed -f sed-linux.rules -i *

# Don't break the build if something went wrong!
exit 0