automake-patches
[Top][All Lists]
Advanced

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

Re: multilibs


From: Alexandre Duret-Lutz
Subject: Re: multilibs
Date: Mon, 21 Jul 2003 08:42:34 +0200
User-agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/21.3 (gnu/linux)

>>> "Ralf" == Ralf Corsepius <address@hidden> writes:

[...]

 Ralf> Note the "for dir in Makefile debug; do". I haven't had enough time to
 Ralf> investigate this yet, but this looks suspicious to me.

This comes directly from config-ml.in.

    550 multi-clean:
    551         if [ -z "$(MULTIDIRS)" ]; then \
    552           true; \
    553         else \
    554           lib=`${PWD} | sed -e 's,^.*/\([^/][^/]*\)$$,\1,'`; \
    555           for dir in Makefile $(MULTIDIRS); do \
    556             if [ -f ../$${dir}/$${lib}/Makefile ]; then \
    557               if (cd ../$${dir}/$${lib}; $(MAKE) $(FLAGS_TO_PASS) $(DO))
    557 ; \
    558               then true; \
    559               else exit 1; \
    560               fi; \
    561             else true; \
    562             fi; \
    563           done; \
    564         fi

I guess that probably could be

    555           for dir in $(MULTIDIRS); do \

-- 
Alexandre Duret-Lutz





reply via email to

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