about summary refs log tree commit diff
path: root/src/librustpkg
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-12-18 09:57:00 -0800
committerAlex Crichton <alex@alexcrichton.com>2013-12-24 19:59:54 -0800
commit3dc38b0c51f8b98ea550b5a3842c87884f10fa8d (patch)
treed8e1c30dc7191971c4ef1618d26c38293ffb29a2 /src/librustpkg
parent0dcdefcf7ee3c143fcaf3368bcfbef703ef54fed (diff)
std: Stop reexporting the contents of 'mod consts'
This prevents usage of the win32 utf-16 helper functions from outside of libstd.

Closes #9053
Diffstat (limited to 'src/librustpkg')
-rw-r--r--src/librustpkg/path_util.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustpkg/path_util.rs b/src/librustpkg/path_util.rs
index a6b1088335c..0d927fc36ae 100644
--- a/src/librustpkg/path_util.rs
+++ b/src/librustpkg/path_util.rs
@@ -390,7 +390,7 @@ pub fn mk_output_path(what: OutputType, where: Target,
                                Bench => "bench",
                                _     => ""
                            },
-                           os::EXE_SUFFIX))
+                           os::consts::EXE_SUFFIX))
     };
     if !output_path.is_absolute() {
         output_path = os::getcwd().join(&output_path);