[commit: ghc] master: configure: Don't use ln -v (066d398)
git at git.haskell.org
git at git.haskell.org
Tue Dec 11 23:21:24 UTC 2018
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/066d3989a45003d2caaf96fab90ec30b55a647ee/ghc
>---------------------------------------------------------------
commit 066d3989a45003d2caaf96fab90ec30b55a647ee
Author: Ben Gamari <bgamari.foss at gmail.com>
Date: Tue Dec 11 13:02:50 2018 -0500
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
>---------------------------------------------------------------
066d3989a45003d2caaf96fab90ec30b55a647ee
configure.ac | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/configure.ac b/configure.ac
index 2cf98a7..0ff192a 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 --------------------------------------------------------------
More information about the ghc-commits
mailing list