summaryrefslogtreecommitdiffstats
path: root/aclocal/path-perl.m4
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-03-18 22:36:28 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-03-18 22:36:28 +0000
commitb64b1ed387bb9fa18e33bc9d7c24aa7fcce38da6 (patch)
tree550111f3e971c07abbad19aaa327acd8eb3c2ee0 /aclocal/path-perl.m4
parentPatch from Ian Lance Taylor <ian@airs.com>: (diff)
downloadrtems-b64b1ed387bb9fa18e33bc9d7c24aa7fcce38da6.tar.bz2
Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:
Moves some configure.in fragments to new macro files below aclocal/ (Motivation: Prepare splitting the toplevel configure.in script)
Diffstat (limited to 'aclocal/path-perl.m4')
-rw-r--r--aclocal/path-perl.m412
1 files changed, 12 insertions, 0 deletions
diff --git a/aclocal/path-perl.m4 b/aclocal/path-perl.m4
new file mode 100644
index 0000000000..e0e7dbb1f0
--- /dev/null
+++ b/aclocal/path-perl.m4
@@ -0,0 +1,12 @@
+dnl $Id$
+
+AC_DEFUN(RTEMS_PATH_PERL,
+[
+AC_PATH_PROG(PERL,perl)
+if test -z "$PERL" ; then
+AC_MSG_WARN(
+[***]
+[ perl was not found]
+[ Note: Some tools will not be built.])
+fi
+])