]> cygwin.com Git - cygwin-apps/setup.git/commitdiff
* source.cc: Add support for both -D and -L on the command line.
authorChristopher Faylor <me@cgf.cx>
Thu, 4 Jun 2009 01:56:28 +0000 (01:56 +0000)
committerChristopher Faylor <me@cgf.cx>
Thu, 4 Jun 2009 01:56:28 +0000 (01:56 +0000)
ChangeLog
source.cc

index 30f871be1cb468a0d7fc63aedf456777a4349f32..69022bf9f3aed276579d0dc0d38fd76ef184de62 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-06-03  Ralph Hempel  <rhempel@bmts.com>
+
+       * source.cc: Add support for both -D and -L on the command line.
+
 2009-06-03  Corinna Vinschen  <corinna@vinschen.de>
 
        * filemanip.cc (unlink): Rename from DeleteFileW.  Take additional
index 6c33ff4f5b13a96a16698d48bd3fdb7fba406e35..6bd5844617ee759b90b97b8c9a6af2ad3cd69969 100644 (file)
--- a/source.cc
+++ b/source.cc
@@ -86,7 +86,9 @@ SourcePage::Create ()
 void
 SourcePage::OnActivate ()
 {
-  if (DownloadOption)
+  if (DownloadOption && LocalOption)
+    source = IDC_SOURCE_NETINST;
+  else if (DownloadOption)
     source = IDC_SOURCE_DOWNLOAD;
   else if (LocalOption)
     source = IDC_SOURCE_CWD;
This page took 0.080654 seconds and 5 git commands to generate.