From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-x431.google.com (mail-wr1-x431.google.com [IPv6:2a00:1450:4864:20::431]) by sourceware.org (Postfix) with ESMTPS id 00F663858D1E for ; Wed, 17 Aug 2022 12:10:17 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 00F663858D1E Received: by mail-wr1-x431.google.com with SMTP id bu15so7479670wrb.7 for ; Wed, 17 Aug 2022 05:10:17 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:subject:to :from:x-gm-message-state:from:to:cc; bh=mQ/33jwVzxMe9cCebU6M1zA9tbbabZMbFHlYHbqspoQ=; b=T5aVxKAaZSEch8CULJ7xNtzvzOukPsB4ZO/wbThAF1QEIiv37iQEztSYM00F8BpDgS J0L6QXfCYkiDrJj+8i/3UH5AX6tBVTRgCqd1YEocsvmiCbOtPYwzFmHEUKZM3Z9lNG/3 ju7ixGmbG5wtRVO1g64uHUQopjPRIJhjt05s1ckUNjK5qXDwX4HVtupXjC0uNFhZBpAz Pb847qRhvfA58fgvQQX0D9YNk67nyjsV0qpP0k891ZZFzXyA2a+Thnpvhybfcqtq3uBu VdCxeT+d5emMGy2Yr2koaZP86/Y4bFFYTTjLvLiO5S0z35aZOGWu11IAk+ddyLkvETfS uqMA== X-Gm-Message-State: ACgBeo2dyePhYvVtmc1euU+uxtJtrVxLGXDagcyU8ntElw2O3loHO8BL 2ZW+/vbfon32iOtmkdGPA8k+McjP9+DPEA== X-Google-Smtp-Source: AA6agR7ssLl6DVzpGEm3KTJ6R/cdXDNwMeOheZAxp/TLCWr9qZj67AcmX5MLadHm57dwfW6HKXRxjA== X-Received: by 2002:a5d:4ad2:0:b0:225:285e:3ec1 with SMTP id y18-20020a5d4ad2000000b00225285e3ec1mr920129wrs.24.1660738216354; Wed, 17 Aug 2022 05:10:16 -0700 (PDT) Received: from max.int.rpsys.net ([2001:8b0:aba:5f3c:3694:2ef4:2932:37d5]) by smtp.gmail.com with ESMTPSA id a16-20020a056000051000b00223b8168b15sm12541581wrf.66.2022.08.17.05.10.15 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 17 Aug 2022 05:10:15 -0700 (PDT) From: Richard Purdie To: gcc-patches@gcc.gnu.org Subject: [PATCH] config/rs6000/t-float128: Don't encode full build paths into headers Date: Wed, 17 Aug 2022 13:10:14 +0100 Message-Id: <20220817121014.1824521-1-richard.purdie@linuxfoundation.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.4 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Aug 2022 12:10:23 -0000 Avoid encoding full build paths into headers, just use the basename of the file. This aids build reproducibility where the build paths vary and source is saved for debugging purposes. libgcc/ChangeLog: * config/rs6000/t-float128: Don't encode full build paths into headers Signed-off-by: Richard Purdie --- libgcc/config/rs6000/t-float128 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgcc/config/rs6000/t-float128 b/libgcc/config/rs6000/t-float128 index b09b5664af0..513e63748f1 100644 --- a/libgcc/config/rs6000/t-float128 +++ b/libgcc/config/rs6000/t-float128 @@ -103,7 +103,7 @@ $(ibm128_dec_objs) : INTERNAL_CFLAGS += $(IBM128_CFLAGS_DECIMAL) $(fp128_softfp_src) : $(srcdir)/soft-fp/$(subst -sw,,$(subst kf,tf,$@)) $(fp128_dep) @src="$(srcdir)/soft-fp/$(subst -sw,,$(subst kf,tf,$@))"; \ echo "Create $@"; \ - (echo "/* file created from $$src */"; \ + (echo "/* file created from `basename $$src` */"; \ echo; \ sed -f $(fp128_sed) < $$src) > $@ -- 2.34.1