"Steven Shaw" <[EMAIL PROTECTED]> wrote: > On 04/12/06, Jim Meyering <[EMAIL PROTECTED]> wrote: >> Did you try putting a copy of libtool.m4 in $prefix/share/aclocal, >> using the $prefix with which you installed your private copy >> of automake? > > Yep. I'm getting the following at the moment: > > $ ./bootstrap > + aclocal -I m4 > + autoheader > + libtoolize --automake > + test -d ../gentools > + test -d ../specs > + cd gen > + rm -f gen-src.mk > + perl -ne /^(abs_srcdir|if|else|endif|include)\b/ or print Makefile.am > + pwd > + make -f - abs_srcdir=/home/steve/External/Projects/qpid-trunk/cpp/gen > srcdir=. gen-src.mk > /bin/sh: AmqpClass.java: Permission denied > /bin/sh: -cp: not found > make: *** [timestamp] Error 127
Details! Good. That should help narrow down the problem. Are you using GNU make? Relatively recent version? I have 3.81 What about perl? I have v5.8.8. What output do you get from this command (assuming you have GNU diff)? (cd gen && rm -f gen-src.mk; \ perl -ne '/^(abs_srcdir|if|else|endif|include)\b/ or print' Makefile.am \ | diff -u0 - Makefile.am ) Here's what I get: --- - 2006-12-04 22:07:13.438724000 +0100 +++ Makefile.am 2006-12-04 19:12:36.000000000 +0100 @@ -0,0 +1 @@ +include gen-src.mk @@ -14,0 +16 @@ timestamp: $(spec) $(java_sources) $(cxx +if BUILD_IN_MESSAGE_TREE @@ -18,0 +21 @@ timestamp: $(spec) $(java_sources) $(cxx +else @@ -19,0 +23 @@ timestamp: $(spec) $(java_sources) $(cxx +endif @@ -29,0 +34 @@ gen-src.mk: timestamp +if BUILD_IN_MESSAGE_TREE @@ -38,0 +44 @@ gen-src.mk: timestamp +endif [Exit 1] If you just want to try building it (without bothering with developer tools, here's the tarball that's built with "make dist" from a current checked-out tree): http://et.redhat.com/~meyering/qpid-0.1.tar.bz2
