1
0
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:
Bram Matthys
2016-10-21 17:21:42 +02:00
parent d51d23e5cb
commit 6e4cc3e235
+2 -2
View File
@@ -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...