summaryrefslogtreecommitdiff
path: root/usr.sbin/pkg_install/create
diff options
context:
space:
mode:
authorMats O Jansson <maja@cvs.openbsd.org>1996-06-19 01:15:14 +0000
committerMats O Jansson <maja@cvs.openbsd.org>1996-06-19 01:15:14 +0000
commit21225cc5af63dd8caf644c5f6a75b632f16e51ef (patch)
tree89895a1512972faff34daf259a0853af1d30de86 /usr.sbin/pkg_install/create
parentd46fa770f652a1357cf3d9b52414f221cec739f7 (diff)
Makefiles supported obj, but not obj.${MACHINE}. Use same solution as
eg. kerberosIV/kadm.
Diffstat (limited to 'usr.sbin/pkg_install/create')
-rw-r--r--usr.sbin/pkg_install/create/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/pkg_install/create/Makefile b/usr.sbin/pkg_install/create/Makefile
index c5029619028..a0ef058cbf5 100644
--- a/usr.sbin/pkg_install/create/Makefile
+++ b/usr.sbin/pkg_install/create/Makefile
@@ -1,11 +1,11 @@
-# $OpenBSD: Makefile,v 1.1 1996/06/04 07:56:05 niklas Exp $
+# $OpenBSD: Makefile,v 1.2 1996/06/19 01:15:12 maja Exp $
PROG= pkg_create
CFLAGS+= ${DEBUG} -I${.CURDIR}/../lib
-.if exists(${.CURDIR}/../lib/obj)
-LDADD+= -L${.CURDIR}/../lib/obj -linstall
-DPADD+= ${.CURDIR}/../lib/obj/libinstall.a
+.if exists(${.CURDIR}/../lib/${__objdir})
+LDADD+= -L${.CURDIR}/../lib/${__objdir} -linstall
+DPADD+= ${.CURDIR}/../lib/${__objdir}/libinstall.a
.else
LDADD+= -L${.CURDIR}/../lib -linstall
DPADD+= ${.CURDIR}/../lib/libinstall.a