%% Akim Demaille <[EMAIL PROTECTED]> writes:

  ad> | 1) I had a line like this in my configure.in:
  ad> |       test -f somefile.in && AC_OUTPUT(somefile)

  ad> Err, I suppose you mean AC_CONFIG_FILES.  Two AC_OUTPUT is not
  ad> supported by Autoconf.

Yes, precisely.

Anyway, I changed this to the safer but less aesthetically pleasing:

  if test -f somefile.in; then
    AC_CONFIG_FILES(somefile)
  fi

and things seem to work fine.

-- 
-------------------------------------------------------------------------------
 Paul D. Smith <[EMAIL PROTECTED]>          Find some GNU make tips at:
 http://www.gnu.org                      http://www.paulandlesley.org/gmake/
 "Please remain calm...I may be mad, but I am a professional." --Mad Scientist

Reply via email to