diff options
author | Theodore Ts'o <tytso@mit.edu> | 2000-07-04 18:51:20 +0000 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2000-07-04 18:51:20 +0000 |
commit | b2420d4057c0a151c5ada91c4648794c8c6cb1a4 (patch) | |
tree | 949e43c12fa8dd69e694e583cce86e94efda7e5e /lib/ss | |
parent | 619dd191ef6aad67a9148d26940e69b99a4da79a (diff) | |
download | e2fsprogs-b2420d4057c0a151c5ada91c4648794c8c6cb1a4.tar.gz |
ChangeLog, Makefile.in:
Makefile.in: Remove explicit link of -lc in the shared library. (It
shouldn't be necessary, and is harmful in some cases).
Diffstat (limited to 'lib/ss')
-rw-r--r-- | lib/ss/ChangeLog | 5 | ||||
-rw-r--r-- | lib/ss/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lib/ss/ChangeLog b/lib/ss/ChangeLog index 714a2403..f6f9e6ad 100644 --- a/lib/ss/ChangeLog +++ b/lib/ss/ChangeLog @@ -1,3 +1,8 @@ +2000-07-04 Theodore Ts'o <tytso@valinux.com> + + * Makefile.in: Remove explicit link of -lc in the shared library. + (It shouldn't be necessary, and is harmful in some cases). + 2000-07-03 <tytso@snap.thunk.org> * ct_c.awk: Work around a bug in gawk 3.05 diff --git a/lib/ss/Makefile.in b/lib/ss/Makefile.in index 6dd0f8c3..76f2672f 100644 --- a/lib/ss/Makefile.in +++ b/lib/ss/Makefile.in @@ -29,7 +29,7 @@ ELF_SO_VERSION = 2 ELF_IMAGE = libss ELF_MYDIR = ss ELF_INSTALL_DIR = $(root_libdir) -ELF_OTHER_LIBS = -lc -L../.. -lcom_err +ELF_OTHER_LIBS = -L../.. -lcom_err BSDLIB_VERSION = 1.0 BSDLIB_IMAGE = libss |