bug-autoconf
[Top][All Lists]
Advanced

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

AC_OUTPUT commands don't run anymore when make is run


From: Mordechai T. Abzug
Subject: AC_OUTPUT commands don't run anymore when make is run
Date: Sun, 14 Apr 2002 16:31:06 -0400
User-agent: Mutt/1.3.22.1i

I recently upgraded autoconf from 2.13 to 2.53.  My configure.in that
contained:

AC_OUTPUT(Makefile foo,
        chmod +x foo)

Under autoconf 2.13, if I ran ./configure && make && make clean &&
make, foo would be executable.  Under 2.53, this sequence of commands
results in foo not being executable.  I tried switching to the new
style macros:

AC_CONFIG_FILES(Makefile foo)
AC_CONFIG_COMMANDS([foo], [chmod +x foo])
AC_OUTPUT

Still no happiness.

- Morty



reply via email to

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