summaryrefslogtreecommitdiff
path: root/cpp/config/makeprops.py
diff options
context:
space:
mode:
authorBrent Eagles <brent@zeroc.com>2007-05-24 17:27:42 +0000
committerBrent Eagles <brent@zeroc.com>2007-05-24 17:27:42 +0000
commitae1073f78adc01b1a572c7aaf5b780b28dff582b (patch)
tree95a4e63a0f14c2112de122be7d1ec783c9ead1ec /cpp/config/makeprops.py
parentadd Property.cs (diff)
downloadice-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.py2
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()