diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-02-12 12:57:39 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-02-12 12:57:39 +0000 |
commit | 1b35617212ff97f97967393995abd4b77d0b0714 (patch) | |
tree | e5c0fedbe5e236f592a02855bad9d6dbc03b5d09 /Build/source/texk/kpathsea/elt-dirs.c | |
parent | 48ccab09c4fc16fea0324771bbdfd3212aebabb2 (diff) |
fix compilation with -DNO_DEBUG
git-svn-id: svn://tug.org/texlive/trunk@16986 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/elt-dirs.c')
-rw-r--r-- | Build/source/texk/kpathsea/elt-dirs.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Build/source/texk/kpathsea/elt-dirs.c b/Build/source/texk/kpathsea/elt-dirs.c index a8711cb0198..a13965db037 100644 --- a/Build/source/texk/kpathsea/elt-dirs.c +++ b/Build/source/texk/kpathsea/elt-dirs.c @@ -1,6 +1,6 @@ /* elt-dirs.c: Translate a path element to its corresponding director{y,ies}. - Copyright 1993, 1994, 1995, 1996, 1997, 2008, 2009 Karl Berry. + Copyright 1993, 1994, 1995, 1996, 1997, 2008, 2009, 2010 Karl Berry. Copyright 1997, 1998, 1999, 2000, 2005 Olaf Weber. This library is free software; you can redistribute it and/or @@ -377,8 +377,10 @@ kpathsea_normalize_path (kpathsea kpse, string elt) ; } +#ifdef KPSE_DEBUG if (KPATHSEA_DEBUG_P (KPSE_DEBUG_STAT) && ret != 1) DEBUGF2 ("kpse_normalize_path (%s) => %u\n", elt, ret); +#endif /* KPSE_DEBUG */ return ret; } |