From 6dc21504593aabb8186373ad76fe30fcddff1a20 Mon Sep 17 00:00:00 2001 From: Brian Fraser Date: Wed, 15 Jan 2014 09:14:46 -0300 Subject: [PATCH] Configure: default incpth to usrinc A previous commit made findhdr use incpth instead of just usrinc; however, at the moment, incpth is not being filled for non-gcc compatible compilers, and so broke the build for those. This commit makes incpth default to usrinc, which means that if for whatever reason incpth is not filled, findhdr will still function as it did before. --- Configure | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Configure b/Configure index 8350ba2..f476297 100755 --- a/Configure +++ b/Configure @@ -4775,6 +4775,11 @@ y) fn=d/ ;; esac +: Default value for incpth is just usrinc +case "$incpth" in +'') incpth="$usrinc";; +esac + : Set private lib path case "$plibpth" in '') if ./mips; then -- 2.7.4