[librsvgmm] Quote substituted paths in the generated Doxyfile



commit fe5e8aae337ffe8d8f5fa228a76d551da707bae8
Author: Daniel Elstner <daniel kitta gmail com>
Date:   Wed Jun 24 12:20:35 2009 +0200

    Quote substituted paths in the generated Doxyfile
    
    * docs/reference/Doxyfile.in: Put double quotes around all Autoconf
    substitutions. These are absolute paths and could contain characters
    not allowed in the source tree itself, such as space.

 docs/reference/Doxyfile.in |   17 +++++++++--------
 1 files changed, 9 insertions(+), 8 deletions(-)
---
diff --git a/docs/reference/Doxyfile.in b/docs/reference/Doxyfile.in
index c61bb31..3901dcf 100644
--- a/docs/reference/Doxyfile.in
+++ b/docs/reference/Doxyfile.in
@@ -1,4 +1,5 @@
 # Doxyfile 1.5.8
+# @configure_input@
 
 #---------------------------------------------------------------------------
 # Project related configuration options
@@ -15,12 +16,12 @@ ABBREVIATE_BRIEF       =
 ALWAYS_DETAILED_SEC    = NO
 INLINE_INHERITED_MEMB  = NO
 FULL_PATH_NAMES        = YES
-STRIP_FROM_PATH        = @abs_top_builddir@/librsvg \
-                         @abs_top_srcdir@/librsvg \
-                         @abs_top_builddir@ \
-                         @abs_top_srcdir@
-STRIP_FROM_INC_PATH    = @abs_top_builddir@/librsvg \
-                         @abs_top_srcdir@/librsvg
+STRIP_FROM_PATH        = "@abs_top_builddir@/librsvg/" \
+                         "@abs_top_srcdir@/librsvg/" \
+                         "@abs_top_builddir@/" \
+                         "@abs_top_srcdir@/"
+STRIP_FROM_INC_PATH    = "@abs_top_builddir@/librsvg/" \
+                         "@abs_top_srcdir@/librsvg/"
 SHORT_NAMES            = NO
 JAVADOC_AUTOBRIEF      = NO
 QT_AUTOBRIEF           = NO
@@ -89,8 +90,8 @@ WARN_LOGFILE           = reference/doxygen.log
 #---------------------------------------------------------------------------
 # configuration options related to the input files
 #---------------------------------------------------------------------------
-INPUT                  = @abs_top_builddir@/librsvg/librsvgmm \
-                         @abs_top_srcdir@/librsvg/librsvgmm
+INPUT                  = "@abs_top_builddir@/librsvg/librsvgmm" \
+                         "@abs_top_srcdir@/librsvg/librsvgmm"
 INPUT_ENCODING         = UTF-8
 FILE_PATTERNS          = *.h
 RECURSIVE              = NO



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]