diff options
author | Brent Eagles <brent@zeroc.com> | 2007-05-24 17:27:42 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2007-05-24 17:27:42 +0000 |
commit | ae1073f78adc01b1a572c7aaf5b780b28dff582b (patch) | |
tree | 95a4e63a0f14c2112de122be7d1ec783c9ead1ec /cpp/config/makeprops.py | |
parent | add Property.cs (diff) | |
download | ice-ae1073f78adc01b1a572c7aaf5b780b28dff582b.tar.bz2 ice-ae1073f78adc01b1a572c7aaf5b780b28dff582b.tar.xz ice-ae1073f78adc01b1a572c7aaf5b780b28dff582b.zip |
enabling the SIGHUP handler
Diffstat (limited to 'cpp/config/makeprops.py')
-rw-r--r-- | cpp/config/makeprops.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/config/makeprops.py b/cpp/config/makeprops.py index 0bc96582502..d924124e4f4 100644 --- a/cpp/config/makeprops.py +++ b/cpp/config/makeprops.py @@ -668,7 +668,7 @@ def main(): # Install signal handler so we can remove the output files if we are interrupted. # signal.signal(signal.SIGINT, handler) - # signal.signal(signal.SIGHUP, handler) + signal.signal(signal.SIGHUP, handler) signal.signal(signal.SIGTERM, handler) parser = make_parser() |