~reviczky/luatex/texlive-bin-debian

« back to all changes in this revision

Viewing changes to debian/patches/fix-bibtex-web2c

  • Committer: Adam Reviczky
  • Date: 2018-06-28 23:42:04 UTC
  • Revision ID: adam.reviczky@kclalumni.net-20180628234204-fc9lurze6g92b83b
Hunk #1 FAILED at 306.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 #define WRITE_OUT(a, b)                                                        \
34
34
--- texlive-bin.orig/Build/source/texk/web2c/lib/openclose.c
35
35
+++ texlive-bin/Build/source/texk/web2c/lib/openclose.c
36
 
@@ -306,25 +306,6 @@
37
 
    \@input{bar} statement, we should look for somedir/bar.aux too.
38
 
    (See bibtex-auxinclude.test.)  */
 
36
@@ -307,26 +307,6 @@
 
37
    \@input{bar} statement, we should look for somedir/bar.aux too. (See
 
38
    bibtex-auxinclude.test.) */
39
39
 
40
40
-boolean
41
41
-open_input_with_dirname (FILE **f_ptr, int filefmt, const char *fname)
43
43
-  boolean ret = false;
44
44
-  char *top_dir = xdirname (fname);
45
45
-
46
 
-  if (top_dir && *top_dir && !STREQ (top_dir, ".")) {
 
46
-  if (top_dir && *top_dir && !STREQ (top_dir, ".")
 
47
-      && !kpse_absolute_p (nameoffile+1, true)) {
47
48
-    char *newname = concat3 (top_dir, DIR_SEP_STRING, nameoffile+1);
48
49
-    free (nameoffile);
49
50
-    nameoffile = xmalloc (strlen (newname) + 2);