buildgcc: Rename quit() to exit_handler()

"quit" is a signal name. The FreeBSD `sh` interprets

    trap quit 1 2 3 15

as command to reset all the respective signal handlers, instead
of setting quit() as handler.

Change-Id: I69b813ab583f15a9dd89a115f7aea66d966f981b
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/20391
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
Nico Huber 2017-06-24 20:35:59 +02:00
parent 8d29dd1258
commit 18c74d69af
1 changed files with 2 additions and 2 deletions

View File

@ -431,7 +431,7 @@ build()
fi fi
} }
quit() exit_handler()
{ {
printf "${NC}Stop\n" printf "${NC}Stop\n"
exit 1 exit 1
@ -807,7 +807,7 @@ print_supported() {
esac esac
} }
trap quit 1 2 3 15 trap exit_handler 1 2 3 15
# Look if we have getopt. If not, build it. # Look if we have getopt. If not, build it.
export PATH=$PATH:. export PATH=$PATH:.