summaryrefslogtreecommitdiff
path: root/libutil
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 /libutil
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 'libutil')
-rw-r--r--libutil/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/libutil/Makefile b/libutil/Makefile
index 70c274233..6c12869e7 100644
--- a/libutil/Makefile
+++ b/libutil/Makefile
@@ -53,6 +53,7 @@ shared: all
install -d $(TOPDIR)lib
rm -f $(TOPDIR)lib/$(LIBUTIL_SHARED_FULLNAME) $(TOPDIR)lib/$(LIBUTIL_SHARED).$(MAJOR_VERSION)
install -m 644 $(LIBUTIL_SHARED_FULLNAME) $(TOPDIR)lib/;
+ (cd $(TOPDIR)lib; ln -sf $(LIBUTIL_SHARED_FULLNAME) $(LIBUTIL_SHARED));
(cd $(TOPDIR)lib; ln -sf $(LIBUTIL_SHARED_FULLNAME) $(LIBUTIL_SHARED).$(MAJOR_VERSION));
clean: