f9be59fdc3
of course, make install handles that, but having it in the repo as well is nicer svn path=/trunk/KDE/kdebase/workspace/; revision=971905
5 lines
110 B
Bash
Executable file
5 lines
110 B
Bash
Executable file
#!/bin/sh
|
|
|
|
while read line; do
|
|
echo "$line" | sed 's@=\s*on\s*$@=true@g' | sed 's@=\s*off\s*$@=false@g'
|
|
done
|