mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-09 02:03:14 +02:00
During ./Config when configuring with remote includes support for the first
time (and we need to suggest paths) we no longer suggest ~/curl if system- curl already provides everything we need.
This commit is contained in:
@@ -646,8 +646,8 @@ if [ "$REMOTEINC" = "1" ] ; then
|
||||
fi
|
||||
fi
|
||||
|
||||
# Second, use the local curl if it exists (overrides above)
|
||||
if [ -d "$HOME/curl" ]; then
|
||||
# Second, local curl in ~/curl if it exists (only overrides above if above was without AsynchDNS)
|
||||
if [ "$GOTASYNC" != "1" -a -d "$HOME/curl" ]; then
|
||||
CURLDIR="$HOME/curl"
|
||||
|
||||
# Check if it's recent enough...
|
||||
|
||||
Reference in New Issue
Block a user