summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--anaconda.spec6
-rwxr-xr-xgui.py3
3 files changed, 14 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1056cebc7..e991249d3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2007-04-09 Jeremy Katz <katzj@redhat.com>
+
+ * anaconda.spec: Bump version.
+
+ * gui.py (InstallControlWindow.connectSignals): Exit when clicking
+ reboot/close.
+
2007-04-05 Jeremy Katz <katzj@redhat.com>
* isys/dasd.c: Fix the build
diff --git a/anaconda.spec b/anaconda.spec
index cce3718d6..9e370fda7 100644
--- a/anaconda.spec
+++ b/anaconda.spec
@@ -1,7 +1,7 @@
%define livearches %{ix86} x86_64
Name: anaconda
-Version: 11.2.0.46
+Version: 11.2.0.47
Release: 1
License: GPL
Summary: Graphical system installer
@@ -142,6 +142,10 @@ rm -rf $RPM_BUILD_ROOT
/sbin/chkconfig --del reconfig >/dev/null 2>&1 || :
%changelog
+* Mon Apr 9 2007 Jeremy Katz <katzj@redhat.com> - 11.2.0.47-1
+- Fix build on s390
+- Ensure we exit at the end of the install.
+
* Sun Apr 8 2007 Peter Jones <pjones@redhat.com> - 11.2.0.46-2
- Rebuild because aparently the s390 build produced a corrupt package...
diff --git a/gui.py b/gui.py
index ea15cecb6..182d23077 100755
--- a/gui.py
+++ b/gui.py
@@ -1202,7 +1202,8 @@ class InstallControlWindow:
def connectSignals(self):
sigs = { "on_nextButton_clicked": self.nextClicked,
- "on_rebootButton_clicked": self.nextClicked,
+ "on_rebootButton_clicked": self._doExit,
+ "on_closeButton_clicked": self._doExit,
"on_backButton_clicked": self.prevClicked,
"on_relnotesButton_clicked": self.releaseNotesButtonClicked,
"on_debugButton_clicked": self.debugClicked,