summaryrefslogtreecommitdiff
path: root/libcrypt
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-05-18 20:31:18 +0000
committerEric Andersen <andersen@codepoet.org>2001-05-18 20:31:18 +0000
commita17d863945361b067988adb12efee72651905845 (patch)
tree2432d7203560ed134104d04bf48c60bd3c472154 /libcrypt
parentd13d4ad946a8e6e6b209e0fe6fee5d93bd38e3e2 (diff)
I wasn't building the libdl shared lib anymore. Make each lib install a
libfoo.so symlink as well as a libfoo.so.0 link, since gcc is currently only looking for files ending in .so. wierd. -Erik
Diffstat (limited to 'libcrypt')
-rw-r--r--libcrypt/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/libcrypt/Makefile b/libcrypt/Makefile
index 6eac3299a..4c118c10b 100644
--- a/libcrypt/Makefile
+++ b/libcrypt/Makefile
@@ -54,6 +54,7 @@ shared: all
install -d $(TOPDIR)lib
rm -f $(TOPDIR)lib/$(LIBCRYPT_SHARED_FULLNAME) $(TOPDIR)lib/$(LIBCRYPT_SHARED).$(MAJOR_VERSION)
install -m 644 $(LIBCRYPT_SHARED_FULLNAME) $(TOPDIR)lib;
+ (cd $(TOPDIR)lib; ln -sf $(LIBCRYPT_SHARED_FULLNAME) $(LIBCRYPT_SHARED));
(cd $(TOPDIR)lib; ln -sf $(LIBCRYPT_SHARED_FULLNAME) $(LIBCRYPT_SHARED).$(MAJOR_VERSION));
clean: