| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Rather than it having its own specialised version
|
| |
|
|
|
|
|
|
|
| |
We were running into problems like:
for f in LICENSE configure config.sub config.guess [...]
make[2]: execvp: /bin/sh: Argument list too long
This patch moves the loop into make, rather than the shell.
|
|
|
|
|
|
| |
This is a bit kludgy. We've hit the maximum number of arguments you can
have in the for loop for adding files to the bindist list, so this just
splits the list in 2.
|
|
|
|
| |
Not a real fix: if this bites us again we'll have to rethink
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
# -----------------------------------------------------------------------------
#
# (c) 2009 The University of Glasgow
#
# This file is part of the GHC build system.
#
# To understand how the build system works and how to modify it, see
# http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture
# http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying
#
# -----------------------------------------------------------------------------
|
|
|