summary refs log tree commit diff
path: root/src/comp/rustc.rc
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2010-08-18 11:34:22 -0700
committerGraydon Hoare <graydon@mozilla.com>2010-08-18 11:34:22 -0700
commitb5ad78f3161d2aeb5e3547f19d14447f34d422db (patch)
treeb78959d484b2dcbf124390f0092a98234ad80410 /src/comp/rustc.rc
parent102ec1687700d51b5367bd68c43ce146bb8c9b74 (diff)
downloadrust-b5ad78f3161d2aeb5e3547f19d14447f34d422db.tar.gz
rust-b5ad78f3161d2aeb5e3547f19d14447f34d422db.zip
Change indent on rustc.rc.
Diffstat (limited to 'src/comp/rustc.rc')
-rw-r--r--src/comp/rustc.rc33
1 files changed, 17 insertions, 16 deletions
diff --git a/src/comp/rustc.rc b/src/comp/rustc.rc
index 77b898062e9..75f893c96aa 100644
--- a/src/comp/rustc.rc
+++ b/src/comp/rustc.rc
@@ -16,28 +16,29 @@ mod driver {
 auth driver = unsafe;
 
 mod lib {
-  alt (target_os) {
-    case ("win32") {
-      let (llvm_lib = "LLVM-2.8svn.dll") {
-        mod llvm;
-      }
+    alt (target_os) {
+        case ("win32") {
+            let (llvm_lib = "LLVM-2.8svn.dll") {
+                mod llvm;
+            }
+        }
+        case ("macos") {
+            let (llvm_lib = "libLLVM-2.8svn.dylib") {
+                mod llvm;
+            }
+        }
+        else {
+            let (llvm_lib = "libLLVM-2.8svn.so") {
+                mod llvm;
+            }
+        }
     }
-    case ("macos") {
-      let (llvm_lib = "libLLVM-2.8svn.dylib") {
-        mod llvm;
-      }
-    }
-    else {
-      let (llvm_lib = "libLLVM-2.8svn.so") {
-        mod llvm;
-      }
-    }
-  }
 }
 
 // Local Variables:
 // fill-column: 78;
 // indent-tabs-mode: nil
+// c-basic-offset: 4
 // buffer-file-coding-system: utf-8-unix
 // compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
 // End: