diff options
author | Ben Gamari <ben@smart-cactus.org> | 2018-06-16 23:31:07 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-06-16 23:33:12 -0400 |
commit | d55035f5fe1312f81a7d3af397d117820e85ad57 (patch) | |
tree | b751ec8b10f8fb54e3fe6d138c87fe35ed7017fc /configure.ac | |
parent | 60e4bb4d305bc1a65457ee79b1e69c11b9ed747d (diff) | |
download | haskell-d55035f5fe1312f81a7d3af397d117820e85ad57.tar.gz |
Revert "Amend configure script to support lndir build tree"
This appears to inexplicably break the OS X build, which fails with:
```
make[1]: *** No rule to make target `utils/unlit/fs.c', needed by
`utils/unlit/dist/build/.depend.c_asm'. Stop.
make[1]: *** Waiting for unfinished jobs....
make: *** [all] Error 2
```
This reverts commit 8ee9c574a6d2105ace858f0fee31750acafe0a0f.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index cf3031114f..2e6e64481c 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 -L utils/fs/fs.* utils/lndir/ -ln -f -v -L utils/fs/fs.* utils/unlit/ -ln -f -v -L utils/fs/fs.* rts/ -ln -f -v -L utils/fs/fs.h libraries/base/include/ -ln -f -v -L utils/fs/fs.c libraries/base/cbits/ +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/ AC_MSG_NOTICE([Routines in place. Packages can now be build normally.]) dnl -------------------------------------------------------------- |