From: Andre Date: Tue, 18 Apr 2006 21:45:18 +0000 (+0200) Subject: Quote the the strings in WRITER_NAME correctly. X-Git-Tag: v0.2.12~64 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=bebec43faf068f44fcd5eb2c67bbdb2c1db23534 Quote the the strings in WRITER_NAME correctly. That fixes problems on debian. --- diff --git a/configure.ac b/configure.ac index 69846789..5e2d2b9a 100644 --- a/configure.ac +++ b/configure.ac @@ -326,7 +326,7 @@ AC_DEFINE_UNQUOTED(INIT_WRITE_ERRLISTS, enum="$(for i in $write_writers; do printf "${i}_WRITE, " | tr '[a-z]' '[A-Z]'; done)" AC_DEFINE_UNQUOTED(WRITER_ENUM, $enum NUM_SUPPORTED_WRITERS, enum of supported writers) -names="$(for i in $write_writers; do printf '\"'$i'\", ' ; done)" +names="$(for i in $write_writers; do printf \"$i\",' ' ; done)" AC_DEFINE_UNQUOTED(WRITER_NAMES, $names, supported writer names) inits="$(for i in $write_writers; do printf 'extern void '$i'_writer_init(struct writer *); '; done)" AC_DEFINE_UNQUOTED(DECLARE_WRITER_INITS, $inits, init functions of the supported writers)