diff options
author | Hans Insulander <hin@cvs.openbsd.org> | 2003-05-17 02:03:20 +0000 |
---|---|---|
committer | Hans Insulander <hin@cvs.openbsd.org> | 2003-05-17 02:03:20 +0000 |
commit | 06324f79034792c76ddcf45c1b4f0ea8c20a4f76 (patch) | |
tree | 532a201ebeaeae11638bb23c700034e13d430657 | |
parent | 6d0b19e2b21cef60598aff5920571193818b5df7 (diff) |
Make the hardlinks the right way. Found by mho@
-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> |