On Fri, Sep 08, 2006 at 10:42:18AM +0200, Jean-Marc Lasgouttes wrote:
> >>>>> "Enrico" == Enrico Forestieri <[EMAIL PROTECTED]> writes:
> 
> Enrico> When starting a fresh build (i.e., just after running
> Enrico> configure with an initially empty build dir) I am getting the
> Enrico> following error from make:
> 
> Enrico> cp libgnuintl.h libintl.h cp: cannot stat `libgnuintl.h': No
> Enrico> such file or directory make[1]: *** [libintl.h] Error 1
> 
> Enrico> and I have to manually
> 
> Enrico> cp <srcdir>/intl/libgnuintl.h <builddir>/intl/libintl.h
> 
> Enrico> before I can resume compilation. Am I the only one seeing
> Enrico> this? (I am clearly using --with-included-gettext)
> 
> Is you problem fixed now?

No, I have to use the attached patch.

-- 
Enrico
Index: intl/Makefile.in
===================================================================
--- intl/Makefile.in    (revision 14934)
+++ intl/Makefile.in    (working copy)
@@ -240,7 +240,7 @@ libgnuintl.h: $(srcdir)/libgnuintl.h.in
          < $(srcdir)/libgnuintl.h.in > libgnuintl.h
 
 libintl.h: libgnuintl.h
-       cp libgnuintl.h libintl.h
+       cp $(srcdir)/libgnuintl.h libintl.h
 
 charset.alias: $(srcdir)/config.charset
        $(SHELL) $(srcdir)/config.charset '@host@' > t-$@

Reply via email to