mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-10-31 18:52:29 +00:00
6034750db3
Uses an AX_SUBST_L macro I copied from another project of mine. Originally found somewhere on the net.
16 lines
452 B
Plaintext
16 lines
452 B
Plaintext
|
|
# ax_subst_l.m4 - Substitute every var in the given comma seperated list -*-Autoconf-*-
|
|
#
|
|
# Copyright (C) 2012 Dennis Schridde
|
|
#
|
|
# This file is free software; the authors give
|
|
# unlimited permission to copy and/or distribute it, with or without
|
|
# modifications, as long as this notice is preserved.
|
|
|
|
# serial 1
|
|
|
|
# Substitute every var in the given comma seperated list
|
|
AC_DEFUN([AX_SUBST_L],[
|
|
m4_foreach([__var__], [$@], [AC_SUBST(__var__)])
|
|
])
|