From owner-svn-src-all@freebsd.org Sun Feb 19 21:19:45 2017 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DB3A7CE6125; Sun, 19 Feb 2017 21:19:45 +0000 (UTC) (envelope-from ngie@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 mx1.freebsd.org (Postfix) with ESMTPS id 9AD1B239; Sun, 19 Feb 2017 21:19:45 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1JLJi6f097306; Sun, 19 Feb 2017 21:19:44 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1JLJikY097305; Sun, 19 Feb 2017 21:19:44 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201702192119.v1JLJikY097305@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Ngie Cooper Date: Sun, 19 Feb 2017 21:19:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r313972 - head/tests/sys/geom/eli/pbkdf2 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.23 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: Sun, 19 Feb 2017 21:19:46 -0000 Author: ngie Date: Sun Feb 19 21:19:44 2017 New Revision: 313972 URL: https://svnweb.freebsd.org/changeset/base/313972 Log: Unbreak the build when "make obj" is executed beforehand Using relative paths imply working directory (in this case .OBJDIR), whereas the sources live in the .CURDIR-relative path. MFC after: 2 weeks X-MFC with: r313962 Pointyhat to: allanjude Sponsored by: Dell EMC Isilon Modified: head/tests/sys/geom/eli/pbkdf2/Makefile Modified: head/tests/sys/geom/eli/pbkdf2/Makefile ============================================================================== --- head/tests/sys/geom/eli/pbkdf2/Makefile Sun Feb 19 21:10:34 2017 (r313971) +++ head/tests/sys/geom/eli/pbkdf2/Makefile Sun Feb 19 21:19:44 2017 (r313972) @@ -2,7 +2,7 @@ .include -SYSDIR = ../../../../../sys +SYSDIR = ${SRCTOP}/sys .PATH: ${SYSDIR}/geom/eli .PATH: ${SYSDIR}/crypto/sha2 @@ -22,7 +22,7 @@ SRCS.pbkdf2= \ LIBADD.pbkdf2= crypto -testvect.h: gentestvect.py +testvect.h: python gentestvect.py > $@ .include