From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32361 invoked by alias); 11 May 2003 16:08:52 -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 32345 invoked from network); 11 May 2003 16:08:52 -0000 Received: from unknown (HELO mout1.freenet.de) (194.97.50.132) by sources.redhat.com with SMTP; 11 May 2003 16:08:52 -0000 Received: from [194.97.50.136] (helo=mx3.freenet.de) by mout1.freenet.de with asmtp (Exim 4.15) id 19EtNb-0002Hk-RK for libc-hacker@sources.redhat.com; Sun, 11 May 2003 18:08:51 +0200 Received: from a7d58.pppool.de ([213.6.125.88] helo=whitebox.local) by mx3.freenet.de with esmtp (Exim 4.15 #3) id 19EtNb-0002T9-3B for libc-hacker@sources.redhat.com; Sun, 11 May 2003 18:08:51 +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 h4BG6lXP004873 for ; Sun, 11 May 2003 18:06:47 +0200 Received: (from andreas@localhost) by whitebox.local (8.12.7/8.12.7/Submit) id h4BG6kjr004870; Sun, 11 May 2003 18:06:46 +0200 X-Authentication-Warning: whitebox.local: andreas set sender to schwab@suse.de using -f To: libc-hacker@sources.redhat.com Subject: Fix io/ftwtest for relative objpfx X-Yow: My EARS are GONE!! From: Andreas Schwab Date: Sun, 11 May 2003 16:08:00 -0000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2003-05/txt/msg00014.txt.bz2 2003-05-11 Andreas Schwab * io/Makefile ($(objpfx)ftwtest.out): Use absolute file names. --- io/Makefile.~1.47.~ 2002-10-21 10:27:02.000000000 +0200 +++ io/Makefile 2003-05-11 13:45:28.000000000 +0200 @@ -83,5 +83,6 @@ ifeq ($(cross-compiling),no) tests: $(objpfx)ftwtest.out $(objpfx)ftwtest.out: $(objpfx)ftwtest - $(SHELL) -e ftwtest-sh $(common-objpfx) $( $@ + $(SHELL) -e ftwtest-sh $(shell cd $(common-objpfx). && pwd)/ \ + $(shell cd $( $@ endif