summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPeter Rosin <peda@lysator.liu.se>2015-11-24 12:39:59 +0100
committerPeter Rosin <peda@lysator.liu.se>2015-11-24 12:39:59 +0100
commit46fd67c9720ee15a37357cea5190b77f3053cac4 (patch)
treee8d4956fd7c4e194e0270fc0a42ac4709918acfb /lib
parent92ed3be97837a3de1634a13959c70c686b17d38d (diff)
parentc40e27e1c2a60f58e72e65d73d808f782d55494a (diff)
downloadautomake-46fd67c9720ee15a37357cea5190b77f3053cac4.tar.gz
Merge branch 'micro' into minor
* micro: compile: add icl to compile wrapper script Signed-off-by: Peter Rosin <peda@lysator.liu.se>
Diffstat (limited to 'lib')
-rwxr-xr-xlib/compile5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/compile b/lib/compile
index 69fad9c95..dc7a6e7df 100755
--- a/lib/compile
+++ b/lib/compile
@@ -1,7 +1,7 @@
#! /bin/sh
# Wrapper for compilers which do not understand '-c -o'.
-scriptversion=2012-10-14.11; # UTC
+scriptversion=2015-11-24.11; # UTC
# Copyright (C) 1999-2015 Free Software Foundation, Inc.
# Written by Tom Tromey <tromey@cygnus.com>.
@@ -255,7 +255,8 @@ EOF
echo "compile $scriptversion"
exit $?
;;
- cl | *[/\\]cl | cl.exe | *[/\\]cl.exe )
+ cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \
+ icl | *[/\\]icl | icl.exe | *[/\\]icl.exe )
func_cl_wrapper "$@" # Doesn't return...
;;
esac