From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24084 invoked by alias); 9 Jun 2003 20:41:01 -0000 Mailing-List: contact libc-hacker-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sources.redhat.com Received: (qmail 24067 invoked from network); 9 Jun 2003 20:41:01 -0000 Received: from unknown (HELO mout1.freenet.de) (194.97.50.132) by sources.redhat.com with SMTP; 9 Jun 2003 20:41:01 -0000 Received: from [194.97.55.148] (helo=mx5.freenet.de) by mout1.freenet.de with asmtp (Exim 4.20) id 19PTRs-0004k8-Gw for libc-hacker@sources.redhat.com; Mon, 09 Jun 2003 22:41:00 +0200 Received: from b0301.pppool.de ([213.7.3.1] helo=whitebox.local) by mx5.freenet.de with esmtp (Exim 4.20 #1) id 19PTRr-0004Dt-C9 for libc-hacker@sources.redhat.com; Mon, 09 Jun 2003 22:41:00 +0200 Received: from whitebox.local (localhost [127.0.0.1]) by whitebox.local (8.12.7/8.12.7/SuSE Linux 0.6) with ESMTP id h59KdoPd009589 for ; Mon, 9 Jun 2003 22:39:51 +0200 Received: (from andreas@localhost) by whitebox.local (8.12.7/8.12.7/Submit) id h59KdoiU009586; Mon, 9 Jun 2003 22:39:50 +0200 X-Authentication-Warning: whitebox.local: andreas set sender to schwab@suse.de using -f To: libc-hacker@sources.redhat.com Subject: Depfiles fix for linuxhtreads X-Yow: I hope you millionaires are having fun! I just invested half your life savings in yeast!! From: Andreas Schwab Date: Mon, 09 Jun 2003 20:41:00 -0000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2003-06/txt/msg00010.txt.bz2 This makes sure that the depfile for libc-tsd.os is actually being used. Andreas. 2003-06-09 Andreas Schwab * Makefile: Move inclusion of ../Rules down after extra-objs is fully known. --- linuxthreads/Makefile.~1.76.~ 2003-05-05 22:25:20.000000000 +0200 +++ linuxthreads/Makefile 2003-06-09 22:33:33.000000000 +0200 @@ -121,7 +121,7 @@ ifeq (yes,$(build-shared)) tests-nodelete-yes = unload endif -include ../Rules +all: # Make this the default target; it will be defined in Rules. # What we install as libpthread.so for programs to link against is in fact a # link script. It contains references for the various libraries we need. @@ -204,6 +204,8 @@ else libc-link.so = $(common-objpfx)libc.so endif +include ../Rules + # Depend on libc.so so a DT_NEEDED is generated in the shared objects. # This ensures they will load libc.so for needed symbols if loaded by # a statically-linked program that hasn't already loaded it.