[llvm-commits] [release_13] CVS: llvm/utils/mkrel.sh

John Criswell criswell at cs.uiuc.edu
Thu Aug 12 07:34:49 PDT 2004



Changes in directory llvm/utils:

mkrel.sh updated: 1.1.2.1 -> 1.1.2.2
---
Log message:

Setup the llvm-gcc tarball the way we have always done.


---
Diffs of the changes:  (+10 -2)

Index: llvm/utils/mkrel.sh
diff -u llvm/utils/mkrel.sh:1.1.2.1 llvm/utils/mkrel.sh:1.1.2.2
--- llvm/utils/mkrel.sh:1.1.2.1	Fri Aug  6 16:03:59 2004
+++ llvm/utils/mkrel.sh	Thu Aug 12 09:34:38 2004
@@ -27,15 +27,23 @@
 # Create the working directory and make it the current directory.
 #
 mkdir -p $dir
+echo "Changing directory to $dir"
 cd $dir
 
 #
 # Extract the LLVM sources given the label.
 #
+echo "Extracting source $tag from $cvsroot"
 cvs -d $cvsroot export -r $tag llvm llvm-gcc
 
 #
+# Move the llvm-gcc sources so that they match what is used by end-users.
+#
+mkdir -p cfrontend
+mv llvm-gcc cfrontend/src
+
+#
 # Create source tarballs.
 #
-tar -cvf - llvm | gzip > llvm-${version}.tar.gz
-tar -cvf - llvm-gcc | gzip > cfrontend-${version}.source.tar.gz
+tar -cf - llvm | gzip > llvm-${version}.tar.gz
+tar -cf - cfrontend | gzip > cfrontend-${version}.source.tar.gz






More information about the llvm-commits mailing list