Skip to content

Commit

Permalink
configure: exit on interruption
Browse files Browse the repository at this point in the history
  • Loading branch information
jhyeon committed Apr 13, 2014
1 parent 6903340 commit 0d4e2b8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion configure
Expand Up @@ -1768,7 +1768,8 @@ the Free Software Foundation, either version 3 of the License, or
EOF
}

trap do_actions_at_exit 0 INT QUIT TERM
trap "do_actions_at_exit" 0
trap "do_actions_at_exit; trap - 0; exit 1" INT QUIT TERM

rm -f $logfile
write_configure_parameters "$*"
Expand Down

0 comments on commit 0d4e2b8

Please sign in to comment.