Date: Sun, 19 Feb 2017 21:19:44 +0000 (UTC) From: Ngie Cooper <ngie@FreeBSD.org> 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 Message-ID: <201702192119.v1JLJikY097305@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.own.mk> -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 <bsd.test.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702192119.v1JLJikY097305>