diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-18 20:31:18 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-18 20:31:18 +0000 |
commit | a17d863945361b067988adb12efee72651905845 (patch) | |
tree | 2432d7203560ed134104d04bf48c60bd3c472154 /libcrypt/Makefile | |
parent | d13d4ad946a8e6e6b209e0fe6fee5d93bd38e3e2 (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/Makefile')
-rw-r--r-- | libcrypt/Makefile | 1 |
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: |