I need to include some paths in AC_CONFIG_SRCDIR which contain spaces. How should I escape them? For example, if I have "some file.in", how should I declare it in:

AC_CONFIG_SRCDIR[some file]

link|improve this question

0% accept rate
Correction: I mean AC_CONFIG_SRCDIR([some file]). – Lluis Sanchez May 27 '10 at 9:07
feedback

2 Answers

In autoconf 2.59 and earlier, you cannot have special characters in the path name of the unique file specified in AC_CONFIG_SRCDIR. In autoconf 2.60 and later, this should work:

AC_CONFIG_SRCDIR([some file])
link|improve this answer
1  
That doesn't work for me. This is interpreted as a list of two files: 'some' and 'file'. – Lluis Sanchez May 27 '10 at 9:09
What version of autoconf? Looking through the ChangeLog, it looks like this should work as of June 23, 2005, which I believe means it won't work with autoconf 2.59. – William Pursell May 28 '10 at 16:12
I have version 2.63. – Lluis Sanchez Jun 1 '10 at 10:23
feedback

AC_CONFIG_SRCDIR([some file]) works fine - make sure you really use the newer autotools, most distributions allow to install both autoconf-2.59 and autoconf-2.6x in parallel and have a wrapper around it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.