automake
[Top][All Lists]
Advanced

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

Re: "make dist" problem...


From: Ralf Wildenhues
Subject: Re: "make dist" problem...
Date: Thu, 18 Jan 2007 22:41:05 +0100
User-agent: Mutt/1.5.13 (2006-08-11)

* 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 , address@hidden)

to this:
  AC_INIT(PegSolitaire, 0.1, address@hidden)

M4 strips leading white space in macro arguments, but not trailing white
space.

Cheers,
Ralf




reply via email to

[Prev in Thread] Current Thread [Next in Thread]