Remove compatibility macros m4_ifblank and m4_ifnblank
[fw/openocd] / config_subdir.m4
1 dnl AC_CONFIG_SUBDIRS does not allow configure options to be passed
2 dnl to subdirs, this function allows that by creating a configure.gnu
3 dnl script that prepends configure options and then calls the real
4 dnl configure script
5 AC_DEFUN([AX_CONFIG_SUBDIR_OPTION],
6 [
7 AC_CONFIG_SUBDIRS([$1])
8
9 m4_ifblank([$2], [rm -f $srcdir/$1/configure.gnu],
10 [echo -e '#!/bin/sh\nexec "`dirname "'\$'0"`/configure" $2 "'\$'@"' > "$srcdir/$1/configure.gnu"
11 ])
12 ])