mirror of
https://github.com/curl/curl.git
synced 2026-04-15 01:01:41 +03:00
Allow tools to be defined with full path in buildconf
This is required in Scratchbox where LIBTOOL=/targets/links/arch_tools/bin/libtool is set in the environment.
This commit is contained in:
parent
2c1b0624ac
commit
a7b9452a6b
1 changed files with 5 additions and 0 deletions
|
|
@ -33,6 +33,11 @@ die(){
|
|||
findtool(){
|
||||
file="$1"
|
||||
|
||||
if test -f "$file"; then
|
||||
echo "$file"
|
||||
return
|
||||
fi
|
||||
|
||||
old_IFS=$IFS; IFS=':'
|
||||
for path in $PATH
|
||||
do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue