diff options
author | 2018-03-30 22:11:17 +0200 | |
---|---|---|
committer | 2018-03-30 22:16:40 +0200 | |
commit | 32d16662a911ff06991a3b0bfb2c833df365457a (patch) | |
tree | 5299925e6456f7b8518488b398201945c89aa116 | |
parent | initialize_portage_env: avoid double prefix for repos.conf location (diff) | |
download | portage-utils-32d16662a911ff06991a3b0bfb2c833df365457a.tar.gz portage-utils-32d16662a911ff06991a3b0bfb2c833df365457a.tar.bz2 portage-utils-32d16662a911ff06991a3b0bfb2c833df365457a.zip |
read_portage_env_file: make debug print the real location
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |