mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
2b27a70865
configure (incorrectly) detected that mkdir on 5 was broken, however the workaround it would try to use was even more broken. Approved by: clement (mentor, implicit)
12 lines
477 B
Plaintext
12 lines
477 B
Plaintext
--- configure.orig Wed Feb 9 04:31:24 2005
|
|
+++ configure Sat May 28 00:24:01 2005
|
|
@@ -1508,7 +1508,7 @@
|
|
echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
|
|
fi
|
|
|
|
-if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
|
|
+if (mkdir -p --version . >/dev/null 2>&1; test ! -d ./--version); then
|
|
# We used to keeping the `.' as first argument, in order to
|
|
# allow $(mkdir_p) to be used without argument. As in
|
|
# $(mkdir_p) $(somedir)
|