1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

[build] Move GUILE_CONFIG_SCRIPT to acinclude.m4.

* configure.ac (GUILE_CONFIG_SCRIPT): Move from here...
* acinclude.m4 (GUILE_CONFIG_SCRIPT): ...to here.
This commit is contained in:
Thien-Thi Nguyen 2010-07-22 14:22:42 +02:00
parent 6a6df18794
commit 39f7ae3135
2 changed files with 4 additions and 5 deletions

View file

@ -442,3 +442,7 @@ AC_DEFUN([GUILE_READLINE], [
AC_SUBST(LIBGUILEREADLINE_INTERFACE_AGE)
AC_SUBST(LIBGUILEREADLINE_INTERFACE)
])
dnl Declare file $1 to be a script that needs configuring,
dnl and arrange to make it executable in the process.
AC_DEFUN([GUILE_CONFIG_SCRIPT],[AC_CONFIG_FILES([$1],[chmod +x $1])])

View file

@ -1643,11 +1643,6 @@ AC_CONFIG_FILES([meta/guile-2.0.pc])
AC_CONFIG_FILES([meta/guile-2.0-uninstalled.pc])
AC_CONFIG_FILES([doc/ref/effective-version.texi])
dnl We can get fancy with m4sugar (m4_foreach et al) later.
dnl NB: We don't jam everything into one GUILE_CONFIG_SCRIPT call
dnl since that expands "chmod +x LONG-LIST-OF-FILES" multiply. --ttn
AC_DEFUN([GUILE_CONFIG_SCRIPT],[AC_CONFIG_FILES([$1],[chmod +x $1])])
GUILE_CONFIG_SCRIPT([check-guile])
GUILE_CONFIG_SCRIPT([benchmark-guile])
GUILE_CONFIG_SCRIPT([meta/guile])