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:
authorFrank van Beek <frank@iae.nl>2003-02-10 20:41:47 +0300
committerFrank van Beek <frank@iae.nl>2003-02-10 20:41:47 +0300
commit49da5dc516638df78d145cc88faf81c903dc8a46 (patch)
tree72c7afbd8f4d7adc6c5d33b710c462817a607bc0
parent91637596656f444fa2806ee51fd6fe9bae8705ee (diff)
- change GPL_license to dos text
-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/\.//'`