From owner-svn-src-all@FreeBSD.ORG Tue Jun 23 16:13:15 2015 Return-Path: Delivered-To: svn-src-all@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C46944A3; Tue, 23 Jun 2015 16:13:15 +0000 (UTC) (envelope-from cochard@gmail.com) Received: from mail-lb0-x231.google.com (mail-lb0-x231.google.com [IPv6:2a00:1450:4010:c04::231]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 53C8FB3; Tue, 23 Jun 2015 16:13:15 +0000 (UTC) (envelope-from cochard@gmail.com) Received: by lbnk3 with SMTP id k3so9930408lbn.1; Tue, 23 Jun 2015 09:13:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=WmpTRR4+IdGwZL0ccGYnYeqexv0topA065ShOboAMpg=; b=LpHFpT710VLdGLMqJycH5hycbjrHw5uNfHrSrIVSUXlG1MHXIhadlH2jjtxr5SdYwJ nIW3zBzDiSklP14CzPrHQSnmWFHyl++0p4emVuTQBiLwAPVvdyrhwLa/NUjk2zH/3JKm AfZVb0BE9Evrcg17xLRIbZLp+x2naQHr7gXMP2MPNOLiv/Vmf7lFJmIO8a/2RdLrSRzQ okCXuQnLF+IRPRZwsWceG7l2n6XZyo/W15FPJz0n/uIEVHmSUQku1+lotrr/55JWgbMC zuVHHWm6YY4V5HhLWcF2Vluef010wMw4ah73ZEAcdMobxgYsmes08IQXGTIvqLYgihxC XU7A== X-Received: by 10.112.131.98 with SMTP id ol2mr36667202lbb.56.1435075990966; Tue, 23 Jun 2015 09:13:10 -0700 (PDT) MIME-Version: 1.0 Sender: cochard@gmail.com Received: by 10.152.135.173 with HTTP; Tue, 23 Jun 2015 09:12:51 -0700 (PDT) In-Reply-To: <201506190509.t5J593PV089167@svn.freebsd.org> References: <201506190509.t5J593PV089167@svn.freebsd.org> From: =?UTF-8?Q?Olivier_Cochard=2DLabb=C3=A9?= Date: Tue, 23 Jun 2015 18:12:51 +0200 X-Google-Sender-Auth: oCVjIb8Lmt7jpRfyh-VVkd-FuWI Message-ID: Subject: Re: svn commit: r284589 - head/usr.sbin/fstyp To: Allan Jude Cc: src-committers , svn-src-all , svn-src-head Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 16:13:16 -0000 On Fri, Jun 19, 2015 at 7:09 AM, Allan Jude wrote: > Author: allanjude (doc committer) > Date: Fri Jun 19 05:09:02 2015 > New Revision: 284589 > URL: https://svnweb.freebsd.org/changeset/base/284589 > > Log: > Add the ability to detect ZFS and GELI encrypted file systems to fstyp(= 8) > > Functionality is hidden behind the -u flag to avoid confusing > automounters > > PR: 200823 > Reviewed by: asomers, eadler, wblock (man page) > Approved by: trasz > MFC after: 10 days > Relnotes: yes > Sponsored by: ScaleEngine Inc. > Differential Revision: https://reviews.freebsd.org/D2045 > > > + > +.if ${MK_CDDL} !=3D "no" > +SRCS +=3D zfs.c > +.endif > + > =E2=80=8BHi,=E2=80=8B =E2=80=8BMy nanobsd use WITHOUT_ZFS (MK_ZFS=3D"no") but kept CDDL=E2=80=8B = enabled for dtrace (MK_CDDL=3D "yes"): Then it failed to build world on usr.sbin/fstyp. Regards,