libxml2: copy the xml2-config to the crosstoolsdir and patch the paths in the native...
[AROS-Contrib.git] / regina / preinst.rexx
blob656c6d044e158bb77d7b97a3c9a5915e7b280dc7
1 /**/
2 Parse Arg rexx_exe infile outfile
3 Call Stream outfile, 'C', 'OPEN WRITE REPLACE'
4 Call Lineout outfile, "#!" || rexx_exe
5 Do While( Lines( infile ) > 0)
6 line = Linein( infile )
7 Call Lineout outfile, line
8 End
9 Call Stream outfile, 'C', 'CLOSE'
10 Return 0