summaryrefslogtreecommitdiffstats
path: root/aclocal/enable-libcdir.m4
blob: 892070522b332737ab6a63d8c658adeec0a66c9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
dnl $Id$

AC_DEFUN(RTEMS_ENABLE_LIBCDIR,
[
AC_ARG_ENABLE(libcdir,
[  --enable-libcdir=directory           set the directory for the C library],
[ RTEMS_LIBC_DIR="${enableval}" ; \
test -d ${enableval} || AC_MSG_ERROR("$enableval is not a directory" ) ] )
AC_SUBST(RTEMS_LIBC_DIR)dnl
])