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

Re: RFS: xiterm+thai (updated package)



On Thu, Apr 17, 2008 at 11:25 AM, Paul Wise <pabs@debian.org> wrote:

...
>  for X11/Intrinsic.h in the configure script and investigate why the
>  build doesn't fail when it isn't present. It looks like the return
>  value from make in the src subdir isn't getting passed out to the
>  top-level make process somehow.

Looks like this in the upstream makefile:

all allbin alldoc tags clean:
        @for I in ${subdirs}; do (cd $$I; ${MAKE} $@ || exit 1); done

Should be replaced with this:

all allbin alldoc tags clean:
        @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done

Same for the other targets in the Makefile.in that have a similar construct.

Switching to automake is another option since it gets this right and
also deals with make -k correctly.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


Reply to: