summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorlukem <lukem@NetBSD.org>2004-08-05 01:24:02 +0000
committerlukem <lukem@NetBSD.org>2004-08-05 01:24:02 +0000
commit0632d7cdd044bcd9bef300407c2b87ba5a3afdcd (patch)
tree5a1d9d03efb3ad88290094c77ac593672edc55e6 /lib
parent91ee88d04d5ca89c4c1d17f1c0adff2cee4a3214 (diff)
Need to prefix relative directories with `${.CURDIR}/' so that
objdir builds in the src tree (i.e, without MAKEOBJDIR{,PREFIX}) work. Fixes problem noted by Hisashi T Fujinaka.
Diffstat (limited to 'lib')
-rw-r--r--lib/libcdk/Makefile4
-rw-r--r--lib/libkrb/Makefile4
-rw-r--r--lib/libkrb5/Makefile10
-rw-r--r--lib/libssl/Makefile4
4 files changed, 11 insertions, 11 deletions
diff --git a/lib/libcdk/Makefile b/lib/libcdk/Makefile
index 536add7ca74..fabe67b2e65 100644
--- a/lib/libcdk/Makefile
+++ b/lib/libcdk/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2004/08/04 08:04:25 lukem Exp $
+# $NetBSD: Makefile,v 1.9 2004/08/05 01:24:02 lukem Exp $
NOLINT= # defined
@@ -9,7 +9,7 @@ DIST= ${NETBSDSRCDIR}/dist
LIB= cdk
-LIBDPLIBS= curses ../libcurses
+LIBDPLIBS= curses ${.CURDIR}/../libcurses
CPPFLAGS+= -I. -I${DIST}/cdk/include -DHAVE_CONFIG_H
diff --git a/lib/libkrb/Makefile b/lib/libkrb/Makefile
index bb55ce2ca8c..758ecc78b26 100644
--- a/lib/libkrb/Makefile
+++ b/lib/libkrb/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.29 2004/08/04 08:04:25 lukem Exp $
+# $NetBSD: Makefile,v 1.30 2004/08/05 01:24:02 lukem Exp $
NOLINT= # defined
@@ -25,7 +25,7 @@ WARNS?= 1
LIB= krb
-LIBDPLIBS= des ../libdes
+LIBDPLIBS= des ${.CURDIR}/../libdes
.if ${USETOOLS} != "yes"
COMPILEETOBJ!= cd ${NETBSDSRCDIR}/lib/libcom_err/compile_et && ${PRINTOBJDIR}
diff --git a/lib/libkrb5/Makefile b/lib/libkrb5/Makefile
index 94d38cb7584..c3daca9032b 100644
--- a/lib/libkrb5/Makefile
+++ b/lib/libkrb5/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.32 2004/08/04 08:04:25 lukem Exp $
+# $NetBSD: Makefile,v 1.33 2004/08/05 01:24:02 lukem Exp $
NOLINT= # defined
@@ -11,10 +11,10 @@ WARNS?= 1
LIB= krb5
-LIBDPLIBS= crypto ../libcrypto \
- asn1 ../libasn1 \
- com_err ../libcom_err \
- roken ../libroken
+LIBDPLIBS= crypto ${.CURDIR}/../libcrypto \
+ asn1 ${.CURDIR}/../libasn1 \
+ com_err ${.CURDIR}/../libcom_err \
+ roken ${.CURDIR}/../libroken
.if ${USETOOLS} != "yes"
COMPILEETOBJ!= cd ${NETBSDSRCDIR}/lib/libcom_err/compile_et && ${PRINTOBJDIR}
diff --git a/lib/libssl/Makefile b/lib/libssl/Makefile
index 7cd6578b891..eba8c6ef698 100644
--- a/lib/libssl/Makefile
+++ b/lib/libssl/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2004/08/04 08:04:25 lukem Exp $
+# $NetBSD: Makefile,v 1.11 2004/08/05 01:24:02 lukem Exp $
# RCSid:
# Id: Makefile,v 1.33 1998/11/11 11:53:53 sjg Exp
@@ -31,7 +31,7 @@ CRYPTODIST= ${NETBSDSRCDIR}/crypto/dist
.include "srcs.inc"
-LIBDPLIBS=crypto ../libcrypto
+LIBDPLIBS=crypto ${.CURDIR}/../libcrypto
# XXX
.if ${OBJECT_FMT} == "ELF"