From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 112211 invoked by alias); 18 Mar 2019 17:31:32 -0000 Mailing-List: contact dwz-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Post: List-Help: List-Subscribe: Sender: dwz-owner@sourceware.org Received: (qmail 112197 invoked by uid 89); 18 Mar 2019 17:31:32 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.100.2 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.3 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,SPF_PASS autolearn=ham version=3.3.1 spammy=oc, suppress, c X-Spam-Status: No, score=-25.3 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,SPF_PASS autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on sourceware.org X-Spam-Level: X-HELO: mx1.suse.de X-Virus-Scanned: by amavisd-new at test-mx.suse.de Date: Tue, 01 Jan 2019 00:00:00 -0000 From: Tom de Vries To: dwz@sourceware.org, jakub@redhat.com Subject: [committed] Fix dwz-for-test sources Message-ID: <20190318173216.GA17702@delia> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) X-SW-Source: 2019-q1/txt/msg00152.txt.bz2 Hi, Currently dwz-for-test is compiled using $(OBJECTS) instead of the corresponding sources files. Fix this by fixing the patsubst function call. Committed to trunk. Thanks, - Tom Fix dwz-for-test sources 2019-03-18 Tom de Vries * Makefile (dwz-for-test): Fix sources. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d2aa386..0f47a98 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ py-section-script: $(CC) $(TEST_SRC)/py-section-script.s -o $@ -g || touch $@ dwz-for-test: - $(CC) $(patsubst \.o$,.c,$(OBJECTS)) -O2 -g -w -lelf -o $@ -W \ + $(CC) $(patsubst %.o,%.c,$(OBJECTS)) -O2 -g -w -lelf -o $@ -W \ -D_FILE_OFFSET_BITS=64 -DDWZ_VERSION='"for-test"' # On some systems we need to set and export DEJAGNU to suppress