automake
[Top][All Lists]
Advanced

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

Re: Two issues with automake


From: Paul D. Smith
Subject: Re: Two issues with automake
Date: 22 Apr 2002 09:27:32 -0400
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2

%% Akim Demaille <address@hidden> 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 <address@hidden>          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

[Prev in Thread] Current Thread [Next in Thread]