From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5222 invoked by alias); 5 Jul 2004 17:11:16 -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 5201 invoked from network); 5 Jul 2004 17:11:16 -0000 Received: from unknown (HELO sunsite.ms.mff.cuni.cz) (195.113.15.26) by sourceware.org with SMTP; 5 Jul 2004 17:11:16 -0000 Received: from sunsite.ms.mff.cuni.cz (sunsite.mff.cuni.cz [127.0.0.1]) by sunsite.ms.mff.cuni.cz (8.12.8/8.12.8) with ESMTP id i65Eu23j006942; Mon, 5 Jul 2004 16:56:02 +0200 Received: (from jakub@localhost) by sunsite.ms.mff.cuni.cz (8.12.8/8.12.8/Submit) id i65Eu2Ip006940; Mon, 5 Jul 2004 16:56:02 +0200 Date: Mon, 05 Jul 2004 17:11:00 -0000 From: Jakub Jelinek To: Ulrich Drepper Cc: Glibc hackers Subject: [PATCH] Fix make check-abi Message-ID: <20040705145602.GD5191@sunsite.ms.mff.cuni.cz> Reply-To: Jakub Jelinek Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i X-SW-Source: 2004-07/txt/msg00009.txt.bz2 Hi! Current diff doesn't like -pu0: diff: `-0' option is obsolete; use `-U 0' diff: Try `diff --help' for more information. 2004-07-05 Jakub Jelinek * Makerules (check-abi): Use diff -p -U 0 instead of diff -pu0. --- libc/Makerules.jj 2004-04-13 10:42:50.000000000 +0200 +++ libc/Makerules 2004-07-05 14:50:46.602142300 +0200 @@ -1191,7 +1191,7 @@ define check-abi LC_ALL=C \ $(AWK) -f $< -v 'config=$(check-abi-config)' \ $(filter %.abilist,$^) \ - | { diff -pu0 - $(filter %.symlist,$^) $(check-abi-warn) ; } + | { diff -p -U 0 - $(filter %.symlist,$^) $(check-abi-warn) ; } endef ifeq ($(enable-check-abi),warn) check-abi-warn = || echo '*** WARNING: $*.so failed ABI check' Jakub