[llvm-commits] CVS: llvm/autoconf/mkinstalldirs

Reid Spencer reid at x10sys.com
Mon Oct 25 22:49:48 PDT 2004



Changes in directory llvm/autoconf:

mkinstalldirs updated: 1.3 -> 1.4
---
Log message:

Really get mkinstalldirs to shut up about what its doing .. who cares?


---
Diffs of the changes:  (+3 -3)

Index: llvm/autoconf/mkinstalldirs
diff -u llvm/autoconf/mkinstalldirs:1.3 llvm/autoconf/mkinstalldirs:1.4
--- llvm/autoconf/mkinstalldirs:1.3	Mon Oct 25 03:21:09 2004
+++ llvm/autoconf/mkinstalldirs	Tue Oct 26 00:49:38 2004
@@ -89,7 +89,7 @@
   *)
     if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 &&
        test ! -d ./--version; then
-      echo "mkdir -m $dirmode -p -- $*"
+      # echo "mkdir -m $dirmode -p -- $*"
       exec mkdir -m "$dirmode" -p -- "$@"
     else
       # Clean up after NextStep and OpenStep mkdir.
@@ -115,7 +115,7 @@
     esac
 
     if test ! -d "$pathcomp"; then
-      echo "mkdir $pathcomp"
+      # echo "mkdir $pathcomp"
 
       mkdir "$pathcomp" || lasterr=$?
 
@@ -123,7 +123,7 @@
 	errstatus=$lasterr
       else
 	if test ! -z "$dirmode"; then
-	  echo "chmod $dirmode $pathcomp"
+	  # echo "chmod $dirmode $pathcomp"
 	  lasterr=""
 	  chmod "$dirmode" "$pathcomp" || lasterr=$?
 






More information about the llvm-commits mailing list