From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9AD95138331 for ; Sat, 31 Mar 2018 06:54:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8AA0EE092E; Sat, 31 Mar 2018 06:54:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 64FF8E092E for ; Sat, 31 Mar 2018 06:54:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 11B88335D63 for ; Sat, 31 Mar 2018 06:54:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2D2D626C for ; Sat, 31 Mar 2018 06:54:39 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1522441000.32d16662a911ff06991a3b0bfb2c833df365457a.grobian@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: / X-VCS-Repository: proj/portage-utils X-VCS-Files: main.c X-VCS-Directories: / X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 32d16662a911ff06991a3b0bfb2c833df365457a X-VCS-Branch: master Date: Sat, 31 Mar 2018 06:54:39 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 478bf2f7-06a9-4dd2-9bbe-f6f01181b675 X-Archives-Hash: 8b9f99debcd9eb3bbc822d2dc456cc19 commit: 32d16662a911ff06991a3b0bfb2c833df365457a Author: Fabian Groffen gentoo org> AuthorDate: Fri Mar 30 20:11:17 2018 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Fri Mar 30 20:16:40 2018 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=32d16662 read_portage_env_file: make debug print the real location main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 6ed2566..7c55358 100644 --- a/main.c +++ b/main.c @@ -648,7 +648,7 @@ read_portage_env_file(const char *configroot, const char *file, env_vars vars[]) char *buf, *s, *p; if (getenv("DEBUG")) - fprintf(stderr, "profile %s\n", file); + fprintf(stderr, "profile %s/%s\n", configroot, file); configroot_len = strlen(configroot); file_len = strlen(file);