summaryrefslogtreecommitdiff
path: root/Build/source/texk/bibtex8
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2011-03-07 10:49:53 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2011-03-07 10:49:53 +0000
commitfa94e399e78544fb77abd60e1b0090b6248d6d1d (patch)
tree5d8bf807fbb359b43ef2a0144a4193a3f0778b5b /Build/source/texk/bibtex8
parentca7b5c3464b1daa17a18ba5a512b36a11fd0561e (diff)
Rename program_invocation_*name => kpse_invocation_*name
(1) to avoid conflict with /usr/include/sys/error.h from Cygwin, and (2) to indicate that these are not the variables from glibc. git-svn-id: svn://tug.org/texlive/trunk@21624 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/bibtex8')
-rw-r--r--Build/source/texk/bibtex8/ChangeLog5
-rw-r--r--Build/source/texk/bibtex8/utils.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/Build/source/texk/bibtex8/ChangeLog b/Build/source/texk/bibtex8/ChangeLog
index 79ad11ce080..86ae827da7c 100644
--- a/Build/source/texk/bibtex8/ChangeLog
+++ b/Build/source/texk/bibtex8/ChangeLog
@@ -1,3 +1,8 @@
+2011-03-07 Peter Breitenlohner <peb@mppmu.mpg.de>
+
+ * utils.c (setup_bound_variable): `program_invocation_name' has
+ been renamed into `kpse_invocation_name'.
+
2010-05-03 Akira Kakuto <kakuto@fuk.kindai.ac.jp>
* bibtex.h: fix a bug in the macro BIB_XRETALLOC_STRING.
diff --git a/Build/source/texk/bibtex8/utils.c b/Build/source/texk/bibtex8/utils.c
index 4f4fff105c4..70f85cd9c14 100644
--- a/Build/source/texk/bibtex8/utils.c
+++ b/Build/source/texk/bibtex8/utils.c
@@ -1233,7 +1233,7 @@ static void setup_bound_variable (Integer_T *var, const char *name,
{
#ifdef KPATHSEA
char *expansion = kpse_var_value (name);
- const char *me = program_invocation_name;
+ const char *me = kpse_invocation_name;
const char *src = " or texmf.cnf";
#else
char *expansion = getenv (name);