diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/ChangeLog | 4 | ||||
-rw-r--r-- | scripts/w32installer.nsi | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/scripts/ChangeLog b/scripts/ChangeLog index a6b536f12..eca136ae4 100644 --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,7 @@ +2009-09-03 Werner Koch <[email protected]> + + * w32installer.nsi: Set the final OutPath to Doc/. + 2008-01-30 Werner Koch <[email protected]> * w32installer.nsi: Set the OutPath back. diff --git a/scripts/w32installer.nsi b/scripts/w32installer.nsi index bccdd0fb2..317149d30 100644 --- a/scripts/w32installer.nsi +++ b/scripts/w32installer.nsi @@ -352,7 +352,7 @@ Section "-Finish" ;; # Set the Outpath pack so that the README file can be displayed. - SetOutPath "$INSTDIR" + SetOutPath "$INSTDIR\Doc" SectionEnd ; "-Finish" |