diff options
author | 2003-05-17 02:03:19 +0000 | |
---|---|---|
committer | 2003-05-17 02:03:19 +0000 | |
commit | 8ee36c8c826c2562f5eb52c446708e422fac0b86 (patch) | |
tree | 75a5d70d73a7daea991acdbba37d075da1d8d3c5 /lib/libkrb5 | |
parent | allow inverse matching on tags (diff) | |
download | wireguard-openbsd-8ee36c8c826c2562f5eb52c446708e422fac0b86.tar.xz wireguard-openbsd-8ee36c8c826c2562f5eb52c446708e422fac0b86.zip |
Make the hardlinks the right way. Found by mho@
Diffstat (limited to 'lib/libkrb5')
-rw-r--r-- | lib/libkrb5/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libkrb5/Makefile b/lib/libkrb5/Makefile index 058bbaf43b8..cad2e152a9d 100644 --- a/lib/libkrb5/Makefile +++ b/lib/libkrb5/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 2003/05/15 05:32:54 hin Exp $ +# $OpenBSD: Makefile,v 1.5 2003/05/17 02:03:19 hin Exp $ KRB5DIR= ${.CURDIR}/../../kerberosV .include "Makefile.common.inc" @@ -28,11 +28,11 @@ ALIB_LINKS = $(SHLIB_LINKS) hdb afterinstall: for f in $(SHLIB_LINKS); do \ - ln -f lib$(LIB).so.$(SHLIB_MAJOR).$(SHLIB_MINOR) \ + ln -f $(DESTDIR)/$(LIBDIR)/lib$(LIB).so.$(SHLIB_MAJOR).$(SHLIB_MINOR) \ $(DESTDIR)$(LIBDIR)/lib$$f.so.$(SHLIB_MAJOR).$(SHLIB_MINOR) ;\ done for f in $(ALIB_LINKS); do \ - ln -f lib$(LIB).a $(DESTDIR)$(LIBDIR)/lib$$f.a ; \ + ln -f $(DESTDIR)/$(LIBDIR)/lib$(LIB).a $(DESTDIR)$(LIBDIR)/lib$$f.a ; \ done .include <bsd.lib.mk> |