diff options
author | kaleb <empty> | 1995-01-16 19:50:38 +0000 |
---|---|---|
committer | kaleb <empty> | 1995-01-16 19:50:38 +0000 |
commit | 28d49daa76cae1c4bdfdc15257b77a94017af034 (patch) | |
tree | 496ab2fd414f262dbf0c24f3933217042c5d4f46 /xc/config | |
parent | c5e3626c3076a69584fcb300cd3790150adb1ca9 (diff) |
no bug-report (yet) do the right thing with links
Diffstat (limited to 'xc/config')
-rw-r--r-- | xc/config/cf/hpLib.rules | 4 | ||||
-rw-r--r-- | xc/config/cf/necLib.rules | 4 | ||||
-rw-r--r-- | xc/config/cf/osfLib.rules | 4 | ||||
-rw-r--r-- | xc/config/cf/sv4Lib.rules | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/xc/config/cf/hpLib.rules b/xc/config/cf/hpLib.rules index 34e9ed1a3..7eaa9fa81 100644 --- a/xc/config/cf/hpLib.rules +++ b/xc/config/cf/hpLib.rules @@ -1,4 +1,4 @@ -XCOMM $XConsortium: hpLib.rules,v 1.3 93/09/04 16:00:09 rws Exp $ +XCOMM $XConsortium: hpLib.rules,v 1.4 93/09/11 17:57:18 rws Exp kaleb $ /* * HP shared library rules @@ -38,7 +38,7 @@ install:: Concat(lib,libname.sl.rev) @@\ MakeDir($(DESTDIR)dest) @@\ $(INSTALL) $(INSTALLFLAGS) $(INSTLIBFLAGS) Concat(lib,libname.sl.rev) $(DESTDIR)dest @@\ $(RM) Concat($(DESTDIR)dest/lib,libname.sl) @@\ - $(LN) Concat(lib,libname.sl.rev) Concat($(DESTDIR)dest/lib,libname.sl) + cd $(DESTDIR)dest; $(LN) Concat(lib,libname.sl.rev) Concat(lib,libname.sl) #endif /* InstallSharedLibrary */ diff --git a/xc/config/cf/necLib.rules b/xc/config/cf/necLib.rules index f23b2778b..7867a432f 100644 --- a/xc/config/cf/necLib.rules +++ b/xc/config/cf/necLib.rules @@ -1,4 +1,4 @@ -XCOMM $XConsortium: necLib.rules,v 1.1 94/03/26 18:15:16 rws Exp $ +XCOMM $XConsortium: necLib.rules,v 1.2 94/04/11 21:17:09 rws Exp kaleb $ /* * NECOS shared library rules @@ -41,7 +41,7 @@ XCOMM $XConsortium: necLib.rules,v 1.1 94/03/26 18:15:16 rws Exp $ install:: Concat(lib,libname.so.rev) @@\ MakeDir($(DESTDIR)dest) @@\ $(INSTALL) -c $(INSTLIBFLAGS) Concat(lib,libname.so.rev) $(DESTDIR)dest @@\ - $(LN) $(DESTDIR)dest/Concat(lib,libname.so.rev) $(DESTDIR)dest/Concat(lib,libname.so) @@\ + cd $(DESTDIR)/dest; $(LN) Concat(lib,libname.so.rev) Concat(lib,libname.so) @@\ #endif /* InstallSharedLibrary */ diff --git a/xc/config/cf/osfLib.rules b/xc/config/cf/osfLib.rules index 7f049cb54..837b2a7a6 100644 --- a/xc/config/cf/osfLib.rules +++ b/xc/config/cf/osfLib.rules @@ -1,4 +1,4 @@ -XCOMM $XConsortium: osfLib.rules,v 1.9 94/01/18 14:58:49 rws Exp $ +XCOMM $XConsortium: osfLib.rules,v 1.10 94/09/19 19:57:41 matt Exp kaleb $ /* * OSF/1 shared library rules @@ -42,7 +42,7 @@ install:: Concat(lib,libname.so.rev) @@\ MakeDir($(DESTDIR)dest) @@\ $(INSTALL) $(INSTALLFLAGS) $(INSTLIBFLAGS) Concat(lib,libname.so.rev) $(DESTDIR)dest @@\ $(RM) Concat($(DESTDIR)dest/lib,libname.so) @@\ - $(LN) Concat(lib,libname.so.rev) Concat($(DESTDIR)dest/lib,libname.so) + cd $(DESTDIR); $(LN) Concat(lib,libname.so.rev) Concat(lib,libname.so) #endif /* InstallSharedLibrary */ diff --git a/xc/config/cf/sv4Lib.rules b/xc/config/cf/sv4Lib.rules index d50f67ea8..cbf3fd4de 100644 --- a/xc/config/cf/sv4Lib.rules +++ b/xc/config/cf/sv4Lib.rules @@ -1,4 +1,4 @@ -XCOMM $XConsortium: sv4Lib.rules,v 1.13 94/03/28 21:03:26 matt Exp $ +XCOMM $XConsortium: sv4Lib.rules,v 1.14 94/04/09 12:00:10 rws Exp kaleb $ /* * SVR4 shared library rules @@ -46,7 +46,7 @@ install:: Concat(lib,libname.so.rev) @@\ MakeDir($(DESTDIR)dest) @@\ $(INSTALL) $(INSTALLFLAGS) $(INSTLIBFLAGS) Concat(lib,libname.so.rev) $(DESTDIR)dest @@\ $(RM) Concat($(DESTDIR)dest/lib,libname.so) @@\ - $(LN) Concat(lib,libname.so.rev) Concat($(DESTDIR)dest/lib,libname.so) + cd $(DESTDIR)dest; $(LN) Concat(lib,libname.so.rev) Concat(lib,libname.so) #endif /* InstallSharedLibrary */ |