mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-18 00:39:18 -04:00
17 lines
551 B
Plaintext
17 lines
551 B
Plaintext
$NetBSD: patch-sbin_config.guess,v 1.2 2013/01/29 15:48:55 taca Exp $
|
|
|
|
Add DragonFly support.
|
|
|
|
--- sbin/config.guess.orig 2012-05-21 07:04:19.000000000 +0000
|
|
+++ sbin/config.guess
|
|
@@ -759,6 +759,9 @@ EOF
|
|
rm -f $dummy.c && rmdir $tmpdir
|
|
echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`${LIBC:+-$LIBC}
|
|
exit 0 ;;
|
|
+ *:DragonFly:*:*)
|
|
+ echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`${LIBC:+-$LIBC}
|
|
+ exit 0 ;;
|
|
i*:CYGWIN*:*)
|
|
echo ${UNAME_MACHINE}-pc-cygwin
|
|
exit 0 ;;
|