diff options
author | Brian Fraser <fraserbn@gmail.com> | 2014-01-15 09:14:46 -0300 |
---|---|---|
committer | Brian Fraser <fraserbn@gmail.com> | 2014-01-15 09:19:00 -0300 |
commit | 6dc21504593aabb8186373ad76fe30fcddff1a20 (patch) | |
tree | ebda262dd1a7b386dde9dd412effdb9d82377333 /Configure | |
parent | 183ebedc441758d502ed8678d776c38a97aa6cb2 (diff) | |
download | perl-6dc21504593aabb8186373ad76fe30fcddff1a20.tar.gz |
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.
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 |