diff options
author | 2003-07-18 06:35:50 +0000 | |
---|---|---|
committer | 2003-07-18 06:35:50 +0000 | |
commit | 58818a7fda415c19a42c079a75f140b92ad4b2ce (patch) | |
tree | f428eb2771a71ef46c1c6e085dd881c0a8353d1c /lib/libkrb5 | |
parent | Simplify handling of flags (-R, -N...). Remove PFCTL_FLAG_ALL. (diff) | |
download | wireguard-openbsd-58818a7fda415c19a42c079a75f140b92ad4b2ce.tar.xz wireguard-openbsd-58818a7fda415c19a42c079a75f140b92ad4b2ce.zip |
Fix for builds with NOPROFILE set. PR3354, ok pval@.
Diffstat (limited to 'lib/libkrb5')
-rw-r--r-- | lib/libkrb5/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libkrb5/Makefile b/lib/libkrb5/Makefile index a421a53a652..195ab12e370 100644 --- a/lib/libkrb5/Makefile +++ b/lib/libkrb5/Makefile @@ -1,4 +1,6 @@ -# $OpenBSD: Makefile,v 1.13 2003/07/15 19:29:29 deraadt Exp $ +# $OpenBSD: Makefile,v 1.14 2003/07/18 06:35:50 matthieu Exp $ + +.include <bsd.own.mk> KRB5DIR= ${.CURDIR}/../../kerberosV GENDIR= ${.CURDIR}/generated @@ -101,9 +103,11 @@ afterinstall: ln -f $(DESTDIR)$(LIBDIR)/lib$(LIB).a \ $(DESTDIR)$(LIBDIR)/lib$$f.a ; \ done +.if !defined(NOPROFILE) for f in $(ALIB_LINKS); do \ ln -f $(DESTDIR)$(LIBDIR)/lib$(LIB)_p.a \ $(DESTDIR)$(LIBDIR)/lib$${f}_p.a ; \ done +.endif .include <bsd.lib.mk> |