* Enrico wrote on Thu, Jan 18, 2007 at 10:32:56PM CET: > > I'm using automake (GNU automake) 1.9.6 and this is the requested output: [...] > if test -f $file || test -d $file; then d=.; else d=.; fi; \ > dir=`echo "$file" | sed -e 's,/[^/]*$,,'`; \ > if test "$dir" != "$file" && test "$dir" != "."; then \ > dir="/$dir"; \ > mkdir -p -- "pegsolitaire-0.1 $dir"; \
This space before '$dir' gives the clue... ...in configure.ac, change this: AC_INIT(PegSolitaire, 0.1 , [EMAIL PROTECTED]) to this: AC_INIT(PegSolitaire, 0.1, [EMAIL PROTECTED]) M4 strips leading white space in macro arguments, but not trailing white space. Cheers, Ralf
