Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
ed99161b
Commit
ed99161b
authored
Oct 22, 2007
by
Simon Marlow
Browse files
patch from
#1782
; fixes check-packages target on Solaris
parent
2fc88e73
Changes
1
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
ed99161b
...
...
@@ -69,14 +69,15 @@ SUBDIRS = gmp includes compat utils driver docs rts libraries compiler
# Sanity check that all the boot libraries are in the tree, to catch
# failure to run darcs-all.
check-packages
:
@
for
d
in
`
cat
libraries/boot-packages
`
;
do
\
@
ds
=
`
cat
libraries/boot-packages
`
;
\
for
d
in
$$
ds
;
do
\
if
test
!
-d
libraries/
$$
d
;
then
\
echo
"Looks like you're missing libraries/
$$
d,"
;
\
echo
"maybe you haven't done './darcs-all get'?"
;
\
exit
1
;
\
fi
\
done
@
if
test
!
-
e
libraries/base/configure
;
then
\
@
if
test
!
-
f
libraries/base/configure
;
then
\
echo
"Looks like you're missing base's configure script."
;
\
echo
"Did you run 'sh boot' at the top level?"
;
\
exit
1
;
\
...
...
Write
Preview
Markdown
is supported
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