From owner-svn-src-projects@freebsd.org Thu Aug 30 01:38:33 2018 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A65CA108D5FD for ; Thu, 30 Aug 2018 01:38:33 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5B3198B4F6; Thu, 30 Aug 2018 01:38:33 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3CB7D25513; Thu, 30 Aug 2018 01:38:33 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7U1cXOH070322; Thu, 30 Aug 2018 01:38:33 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7U1cXxV070321; Thu, 30 Aug 2018 01:38:33 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201808300138.w7U1cXxV070321@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Thu, 30 Aug 2018 01:38:33 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r338393 - projects/krb5/tools/build X-SVN-Group: projects X-SVN-Commit-Author: cy X-SVN-Commit-Paths: projects/krb5/tools/build X-SVN-Commit-Revision: 338393 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Aug 2018 01:38:33 -0000 Author: cy Date: Thu Aug 30 01:38:32 2018 New Revision: 338393 URL: https://svnweb.freebsd.org/changeset/base/338393 Log: r338098 made mtree ineffective for this project, breaking buildworld. Add private includes using a separate for loop. Modified: projects/krb5/tools/build/Makefile Modified: projects/krb5/tools/build/Makefile ============================================================================== --- projects/krb5/tools/build/Makefile Wed Aug 29 20:54:56 2018 (r338392) +++ projects/krb5/tools/build/Makefile Thu Aug 30 01:38:32 2018 (r338393) @@ -68,6 +68,13 @@ installdirs: mkdir -p "${DESTDIR}/${_dir}" .endfor +# For private kerberos +# XXX There really needs to be a better way than this, such as building +# XXX mtree and installing it in legacy early. +.for _dir in asn1 bsdstat com_err event hdb heimbase heimntlm hx509 kafs5 kdc krb5 roken sqlite3 ucl wind zstd + mkdir -p "${DESTDIR}/usr/include/private/${_dir}" +.endfor + .for _group in ${INCSGROUPS:NINCS} mkdir -p "${DESTDIR}/${${_group}DIR}" .endfor