diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2018-12-11 13:02:50 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-12-11 13:02:50 -0500 |
commit | 066d3989a45003d2caaf96fab90ec30b55a647ee (patch) | |
tree | b57060f0b942ecfac84fed3c6d102ed3f5c271e6 | |
parent | 015dd8ab64e2cf8dd82845fec9b1daf5fedbf55b (diff) | |
download | haskell-066d3989a45003d2caaf96fab90ec30b55a647ee.tar.gz |
configure: Don't use ln -v
There's no reason why we need to print the linked files and apparently
ln on OpenBSD doesn't support -v.
Fixes #15946.
Test Plan: Validate
Reviewers: monoidal
Reviewed By: monoidal
Subscribers: rwbarton, erikd, carter
GHC Trac Issues: #15946
Differential Revision: https://phabricator.haskell.org/D5425
-rw-r--r-- | configure.ac | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 2cf98a79dc..0ff192a928 100644 --- a/configure.ac +++ b/configure.ac @@ -673,11 +673,11 @@ dnl -------------------------------------------------------------- dnl ** Copy the files from the "fs" utility into the right folders. dnl -------------------------------------------------------------- AC_MSG_NOTICE([Creating links for in-tree file handling routines.]) -ln -f -v utils/fs/fs.* utils/lndir/ -ln -f -v utils/fs/fs.* utils/unlit/ -ln -f -v utils/fs/fs.* rts/ -ln -f -v utils/fs/fs.h libraries/base/include/ -ln -f -v utils/fs/fs.c libraries/base/cbits/ +ln -f utils/fs/fs.* utils/lndir/ +ln -f utils/fs/fs.* utils/unlit/ +ln -f utils/fs/fs.* rts/ +ln -f utils/fs/fs.h libraries/base/include/ +ln -f utils/fs/fs.c libraries/base/cbits/ AC_MSG_NOTICE([Routines in place. Packages can now be build normally.]) dnl -------------------------------------------------------------- |