diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2015-08-25 17:30:18 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2015-09-08 10:05:16 +0200 |
commit | a15860749ae5353d58cc8907b291ac15d430fc8e (patch) | |
tree | 63b00fe77e4586ec2a47cebc5b3b0415916ed960 /validate | |
parent | 864a9c4f83156caacae5777b3ad6b93b4da9c242 (diff) | |
download | haskell-a15860749ae5353d58cc8907b291ac15d430fc8e.tar.gz |
Build system: delete the InstallExtraPackages variable
Just install all packages that are built. Don't make an exception for
the dph and extra packages.
You can control whether the dph and extra packages should be build using
the variables BUILD_DPH and BUILD_EXTRA_PKGS. These variables didn't
exist before. But now that they do, InstallExtraPackages isn't really
needed anymore.
Reviewed by: austin
Differential Revision: https://phabricator.haskell.org/D1227
Diffstat (limited to 'validate')
-rwxr-xr-x | validate | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -193,11 +193,6 @@ if [ $be_quiet -eq 1 ]; then echo "V=0" >> mk/are-validating.mk # Less gunk fi -if [ $speed != "FAST" ]; then - # Build the "extra" packages (see ./packages), to enable more tests. - echo "BUILD_EXTRA_PKGS=YES" >> mk/are-validating.mk -fi - if [ $use_dph -eq 1 ]; then echo "BUILD_DPH=YES" >> mk/are-validating.mk else |