Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'release/windows')
-rwxr-xr-xrelease/windows/specific.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/release/windows/specific.sh b/release/windows/specific.sh
index 4be31114d47..a5729e6c353 100755
--- a/release/windows/specific.sh
+++ b/release/windows/specific.sh
@@ -42,6 +42,10 @@ rm -f $DISTDIR/copyright.txt
mv -f $DISTDIR/aCopyright.txt $DISTDIR/Copyright.txt
# PS. the whole aCopyright kludge is because of windows being braindead
+# Create ^M in copyright.txt
+awk '{printf("%s\r\n", $0);}' $DISTDIR/GPL-license.txt > $DISTDIR/temp.txt
+mv -f $DISTDIR/temp.txt $DISTDIR/GPL-license.txt
+
# Add Python DLL to package
# Stupid windows needs the . removed :
PVERS=`echo $NAN_PYTHON_VERSION | sed 's/\.//'`