diff options
author | midipix <writeonce@midipix.org> | 2016-05-14 09:35:03 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-05-14 09:35:03 -0400 |
commit | 02d78787d7f18fe278ac1a8ffe192eb1ceae0fbb (patch) | |
tree | eb052515500b06c9c00e2d5843fd15f5a0d63877 | |
parent | 20cc26dcaac701a9975cf2b7681ae0e4e5658afd (diff) | |
download | sofort-02d78787d7f18fe278ac1a8ffe192eb1ceae0fbb.tar.bz2 sofort-02d78787d7f18fe278ac1a8ffe192eb1ceae0fbb.tar.xz |
fix post-generation substitution in project/tagver.mk.
-rwxr-xr-x | sofort.sh | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -80,6 +80,7 @@ done # and also project/tagver.mk, which has SFRT, not SFRT_ f=project/tagver.mk +upperspace=`echo "$namespace" | tr '[:lower:]' '[:upper:]'` sed -e s/SFRT/$upperspace/g "$f" > "$f.tmp" || exit 2 mv "$f.tmp" "$f" || exit 2 |