From 6f3725474c2b0688150913d4ee342bd2bc600eef Mon Sep 17 00:00:00 2001 From: Brian Fraser Date: Fri, 15 Nov 2013 03:39:02 -0300 Subject: [PATCH] Configure: If cross-compiling to linux, pick the proper hints file Something like arm-linux-gnueabihf -- which is what the raspberry pi gets as its targetarch -- is really just plain Linux, so set osname to that and load up the hints file. --- Configure | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Configure b/Configure index 7fc99b5..a6fa428 100755 --- a/Configure +++ b/Configure @@ -3550,6 +3550,11 @@ EOM # and i686-linux-android osname=linux-android ;; + *linux*) + # Something like arm-linux-gnueabihf is really just + # plain linux. + osname=linux + ;; *) osname=`echo $targetarch|sed 's,^[^-]*-,,'` ;; -- 2.7.4