Sven Panne writes:
> [ It seems that my original message only reached me (and not e.g. my
>   colleagues here in Munich), so here's the second try...]
> 

Hmm, I saw your msg first time around. Let us know if the problem
still persists.

> 
> Quick hack for the Makefile: Change
> 
>    if test "$(PACKAGE_FOO)"; then \
>       for i in $(PACKAGE_FOO) ; do \
>          ...
>       done
>    fi
> 
> to
> 
>    for i in $(PACKAGE_FOO) ThisIsAHack ; do \
>       if test $i != ThisIsAHack ; then
>          ...
>       fi
>    done
> 

Thx, a slightly simpler solution is to use the empty string here,
i.e.,

    for i in $(PACKAGE_FOO) '' ; do \
       if test -n "$$i" ; then
          ...
       fi


--Sigbjorn
  • ; Jon Mountjoy
    • Re: ; Simon L Peyton Jones
    • Re: ; Sven Panne
    • Sigbjorn Finne

Reply via email to