summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancois Tigeot <ftigeot@wolfpond.org>2011-04-11 19:02:37 +0200
committerFrancois Tigeot <ftigeot@wolfpond.org>2011-04-11 19:02:37 +0200
commitb2dbd828b98a5e2e63c20ac4684df6cf22aec7f7 (patch)
treead9f817b4d19046d4a6b325fd06a704965d77fc3
parenta6677859fae94f9d8f2723bd1a806216459f082d (diff)
Also use system cp as fallback on DragonFly.
-rwxr-xr-xconfigure.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index f1a476e6f5f2..6443de04d4a0 100755
--- a/configure.in
+++ b/configure.in
@@ -5922,7 +5922,8 @@ if $GNUCP --version 2>/dev/null | grep "coreutils" >/dev/null 2>/dev/null; then
elif $GNUCP --version 2>/dev/null | grep "GNU fileutils" >/dev/null 2>/dev/null; then
AC_MSG_RESULT([yes])
else
- if test "$_os" = "Darwin" -o "$_os" = "NetBSD" -o "$_os" = "OpenBSD" -o "$_os" = "FreeBSD"; then
+ if test "$_os" = "Darwin" -o "$_os" = "NetBSD" -o "$_os" = "OpenBSD" \
+ -o "$_os" = "FreeBSD" -o "$_os" = "DragonFly"; then
GNUCP=''
AC_MSG_RESULT([no gnucp found - using the system's cp command])
else