diff options
author | midipix <writeonce@midipix.org> | 2016-05-07 11:55:43 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-05-07 11:55:43 -0400 |
commit | 9160dd1d72d39cdcf7c8c656783a2f65a1246885 (patch) | |
tree | 435fb94934bd4c10320e6e6ef4000e8b3fcf0ecd | |
parent | 0bf5e7e4e1007b372f6215bc4dc9b096f1c965a1 (diff) | |
download | sofort-9160dd1d72d39cdcf7c8c656783a2f65a1246885.tar.bz2 sofort-9160dd1d72d39cdcf7c8c656783a2f65a1246885.tar.xz |
sofort.sh: apply namespace transformation in project/tagver.mk.
-rwxr-xr-x | sofort.sh | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -78,6 +78,11 @@ for f in $files; do mv "$f.tmp" "$f" || exit 2 done +# and also project/tagver.mk, which has SFRT, not SFRT_ +f=project/tagver.mk +sed -e s/SFRT/$upperspace/g "$f" > "$f.tmp" || exit 2 +mv "$f.tmp" "$f" || exit 2 + # four: directory names mv include/sofort include/$project || exit 2 dirs=$(find . -type d) |