diff options
| author | bors <bors@rust-lang.org> | 2014-12-14 16:07:32 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-12-14 16:07:32 +0000 |
| commit | 93c061009675b8b54edee03b7603bc2cf9ed79fa (patch) | |
| tree | 07dcb5aebc6bc97bf05814c2607f1f292cefce89 | |
| parent | 52f7a4a351646d3837f214b5c7aec390c9b08221 (diff) | |
| parent | 3eda3cde187d791d0647a7ffbf2c23ee75e6bdde (diff) | |
| download | rust-93c061009675b8b54edee03b7603bc2cf9ed79fa.tar.gz rust-93c061009675b8b54edee03b7603bc2cf9ed79fa.zip | |
auto merge of #19725 : vadimcn/rust/inst-path, r=alexcrichton
Change default installation directory to %SYSTEMDRIVE%\Rust. Modify user PATH, rather than system PATH.
| -rw-r--r-- | src/etc/pkg/rust.iss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/etc/pkg/rust.iss b/src/etc/pkg/rust.iss index c57a7ab6c70..43df6256e0b 100644 --- a/src/etc/pkg/rust.iss +++ b/src/etc/pkg/rust.iss @@ -23,7 +23,7 @@ DisableStartupPrompt=true OutputDir=.\dist\ SourceDir=.\ OutputBaseFilename={#CFG_PACKAGE_NAME}-{#CFG_BUILD} -DefaultDirName={pf32}\Rust +DefaultDirName={sd}\Rust Compression=lzma2/ultra InternalCompressLevel=ultra @@ -49,7 +49,7 @@ Source: "tmp/dist/win/gcc/*.*"; DestDir: "{app}"; Flags: ignoreversion recursesu [Code] const ModPathName = 'modifypath'; - ModPathType = 'system'; + ModPathType = 'user'; function ModPathDir(): TArrayOfString; begin |
