Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
jberryman
GHC
Commits
a664d738
Commit
a664d738
authored
Mar 19, 2009
by
Ian Lynagh
Browse files
Work around Solaris's grep not supporting -q
parent
26cc6e39
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
a664d738
...
...
@@ -1299,8 +1299,9 @@ AC_OUTPUT
# $(eval ...) inside conditionals causes errors
# with make 3.80, so warn the user if it looks like they're about to
# try to use it.
# We would use "grep -q" here, but Solaris's grep doesn't support it.
checkMake380() {
if $1 --version 2>&1 | head -1 | grep
-q
'GNU Make 3\.80'
if $1 --version 2>&1 | head -1 | grep 'GNU Make 3\.80'
> /dev/null
then
echo
echo "WARNING: It looks like \"$1\" is GNU make 3.80."
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment