summaryrefslogtreecommitdiffhomepage
path: root/sofort.sh
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-05-07 11:55:43 -0400
committermidipix <writeonce@midipix.org>2016-05-07 11:55:43 -0400
commit9160dd1d72d39cdcf7c8c656783a2f65a1246885 (patch)
tree435fb94934bd4c10320e6e6ef4000e8b3fcf0ecd /sofort.sh
parent0bf5e7e4e1007b372f6215bc4dc9b096f1c965a1 (diff)
downloadsofort-9160dd1d72d39cdcf7c8c656783a2f65a1246885.tar.bz2
sofort-9160dd1d72d39cdcf7c8c656783a2f65a1246885.tar.xz
sofort.sh: apply namespace transformation in project/tagver.mk.
Diffstat (limited to 'sofort.sh')
-rwxr-xr-xsofort.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/sofort.sh b/sofort.sh
index 59369d9..313e3b6 100755
--- a/sofort.sh
+++ b/sofort.sh
@@ -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)