Module Name: src
Committed By: agc
Date: Mon Jun 8 06:29:33 UTC 2009
Modified Files:
src/crypto/external/bsd/netpgp/netpgpverify: Makefile
Log Message:
Fix up paths for the reachover Makefile for netpgpverify
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/crypto/external/bsd/netpgp/netpgpverify/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/crypto/external/bsd/netpgp/netpgpverify/Makefile
diff -u src/crypto/external/bsd/netpgp/netpgpverify/Makefile:1.1 src/crypto/external/bsd/netpgp/netpgpverify/Makefile:1.2
--- src/crypto/external/bsd/netpgp/netpgpverify/Makefile:1.1 Mon Jun 8 06:13:56 2009
+++ src/crypto/external/bsd/netpgp/netpgpverify/Makefile Mon Jun 8 06:29:33 2009
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.1 2009/06/08 06:13:56 agc Exp $
+# $NetBSD: Makefile,v 1.2 2009/06/08 06:29:33 agc Exp $
PROG= netpgpverify
BINDIR= /usr/bin
SRCS= verify.c
-CPPFLAGS+= -I${.CURDIR}/../dist/include
+CPPFLAGS+= -I${.CURDIR}/../dist/include -I${.CURDIR}/../lib
LDADD+= -lcrypto -lz -lbz2
DPADD+= ${LIBCRYPTO} ${LIBZ} ${LIBBZ2}
@@ -16,6 +16,8 @@
# errors. For now, just set WARNS off.
WARNS= 0
-.PATH: ${.CURDIR}/../dist/src/lib ${.CURDIR}/../dist/src/bin
+EXTDIST=${.CURDIR}/../dist
+
+.PATH: ${EXTDIST}/src/lib ${EXTDIST}/src/bin
.include <bsd.prog.mk>