From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2142) id 85B96385771F; Fri, 19 May 2023 14:00:31 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 85B96385771F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1684504831; bh=wxJ8V1qkQvXfHaHPFRROAe3pbr4+tE+9D8HUNUrsL6M=; h=To:Subject:Date:From:From; b=IwTn4Hi+YlaWd7GNGMD2OnyFi6zMu77v9e5BfnWM3qJDSxGSsr9d4dVUgSJfTlg3s +0hMgRi1bkEpvIYGlIBFxBt3ri6T9Xg8rWBtAM3wcHQ23NzKIPoTRnCapE4a8DHogB G2I12s2VWJoEK7oql3iI/qSTxdEMNFidaSLibwEI= To: gcc-cvs-wwwdocs@gcc.gnu.org Subject: gcc-wwwdocs branch master updated. b3ed2d817de659c08c6e33f8aaf94c337fca13f2 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 553eb2f76d6414e962f923c3bacf33edd0040491 X-Git-Newrev: b3ed2d817de659c08c6e33f8aaf94c337fca13f2 Message-Id: <20230519140031.85B96385771F@sourceware.org> Date: Fri, 19 May 2023 14:00:31 +0000 (GMT) From: Gerald Pfeifer List-Id: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "gcc-wwwdocs". The branch, master has been updated via b3ed2d817de659c08c6e33f8aaf94c337fca13f2 (commit) from 553eb2f76d6414e962f923c3bacf33edd0040491 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit b3ed2d817de659c08c6e33f8aaf94c337fca13f2 Author: Gerald Pfeifer Date: Fri May 19 15:59:46 2023 +0200 preprocess: Fix reference to SOURCETREE diff --git a/bin/preprocess b/bin/preprocess index c6d34c4b..2e474b0c 100755 --- a/bin/preprocess +++ b/bin/preprocess @@ -155,7 +155,7 @@ process_file() # Strip possibly leading "./". f=`echo $1 | sed -e 's#^\./##'` - if [ ! -f "$SRCTREE/$f" ]; then + if [ ! -f "$SOURCETREE/$f" ]; then echo "Input file $f not found." return fi ----------------------------------------------------------------------- Summary of changes: bin/preprocess | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- gcc-wwwdocs