This is the mail archive of the libc-hacker@sourceware.cygnus.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Why elf/sln not build?


hjl@lucon.org (H.J. Lu) writes:

|> Hi,
|> 
|> glibcc 2.0.7 in CVS is broken due to this change:
|> 
|> 1998-07-24 10:58  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
|> 
|> 	* elf/Makefile: Don't install sln.
|> 
|> As the result, elf/sln is not built. "make install" failed at the
|> last moment since elf/sln is not found. May I ask why it is removed?

IMHO this is not a general tool, it is very specific to libc build
process.  And there is often alread a /sbin/sln that is different.  I
don't think that it should be installed.

|> Even if we don't want to install it, we still shoulld build it.

You are right, here is a patch:

Fri Aug  7 10:42:23 1998  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

	* elf/Makefile (others): Add sln.
	(extra-objs): Remove sln.o.

Index: Makefile
===================================================================
RCS file: /glibc/cvsfiles/libc/elf/Makefile,v
retrieving revision 1.52.2.5
diff -u -a -u -r1.52.2.5 Makefile
--- Makefile	1998/08/03 18:41:04	1.52.2.5
+++ Makefile	1998/08/07 08:42:05
@@ -56,7 +56,7 @@
 install-bin	= ldd
 endif
 
-extra-objs	+= sln.o
+others		+= sln
 
 $(objpfx)sln: $(objpfx)sln.o
 	$(CC) -nostdlib -nostartfiles -o $@ $(sysdep-LDFLAGS) -static	      \

-- 
Andreas Schwab                                      "And now for something
schwab@issan.informatik.uni-dortmund.de              completely different"
schwab@gnu.org


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]