svn commit: r312478 - head/lib/libsqlite3
Ngie Cooper
ngie at FreeBSD.org
Fri Jan 20 04:34:03 UTC 2017
Author: ngie
Date: Fri Jan 20 04:34:01 2017
New Revision: 312478
URL: https://svnweb.freebsd.org/changeset/base/312478
Log:
Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
This implifies pathing in make/displayed output
MFC after: 3 weeks
Sponsored by: Dell EMC Isilon
Modified:
head/lib/libsqlite3/Makefile
Modified: head/lib/libsqlite3/Makefile
==============================================================================
--- head/lib/libsqlite3/Makefile Fri Jan 20 04:33:45 2017 (r312477)
+++ head/lib/libsqlite3/Makefile Fri Jan 20 04:34:01 2017 (r312478)
@@ -8,7 +8,7 @@ LIBADD+= pthread
SRCS= sqlite3.c
-SQLITE= ${.CURDIR}/../../contrib/sqlite3
+SQLITE= ${SRCTOP}/contrib/sqlite3
.PATH: ${SQLITE}
WARNS= 3
More information about the svn-src-all
mailing list