1
0
mirror of https://github.com/netsurf-browser/netsurf synced 2024-12-24 04:56:50 +03:00

enable monkey to be built everywhere it is completely generic now

This commit is contained in:
Vincent Sanders 2016-02-12 14:16:31 +00:00
parent 2c9cc34334
commit 157f05bc61

View File

@ -273,23 +273,8 @@ case ${TARGET} in
"monkey")
# monkey target can be built on most of the supported architectures
# monkey target can be built anywhere
case ${HOST} in
"x86_64-linux-gnu")
;;
arm-linux-gnueabihf)
;;
"aarch64-linux-gnu")
;;
"i686-apple-darwin10")
;;
"powerpc-apple-darwin9")
;;
amd64-unknown-openbsd*)
MAKE=gmake
;;
@ -325,8 +310,7 @@ case ${TARGET} in
;;
*)
echo "Target \"${TARGET}\" cannot be built on \"${HOST})\""
exit 1
echo "Target \"${TARGET}\" generic build on \"${HOST})\""
;;
esac