File: remove_unknown_properties

package info (click to toggle)
cqrlog 2.5.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 28,092 kB
  • sloc: pascal: 92,878; sh: 198; makefile: 78; xml: 22
file content (16 lines) | stat: -rwxr-xr-x 467 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

#################################################
# removes properties added by Lazarus 1.8.0     #
# this script has to be used when compile with  #
# old Lazarus before running Makefile           #
# DO NOT COMMIT THESE CHANGES TO THE REPOSITORY #
#################################################

for f in `ls ../src/*.lfm`;
do
  echo $f
  sed -i '/PPI =/d' $f
  sed -i '/UseDollarString =/d' $f
done
echo "UseDollarString and PPI properties removed"