To me it sounds like the variable @am_AUTOM4TE@ has not been substituted during the configure stage of installing automake and it's still in these files somewhere bugging them like undigested food. It's like a template variable which is usually exists in *.in files (the template files) which normally is replaced during installation by local system-specific information, e.g. with a call to AC_SUBST([am_AUTOM4TE], ["path-to-autom4te-whatever"]) during configure (of automake).

Now if that diagnosis is correct then you need to properly install automake again. *OR* a quick hack is to search for all @am_AUTOM4TE@ instances (find /export/home/Repo/automake-1.15 -type f -exec grep -H 'am_AUTOM4TE' \{\} \; and replace them with the full path to autom4te executable (just replace @am_AUTOM4TE@ with the path, leave it quoted if it is quoted).

or try the configure recipe in this post https://stackoverflow.com/questions/29483667/how-to-tell-automake-to-find-my-version-of-aclocal-when-recompiling-hunspell

bw, bliako


In reply to Re: compiling perl in solaris SPARC by bliako
in thread compiling perl in solaris SPARC by greenelephant

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.