diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-02-27 10:59:39 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-02-27 10:59:39 +0000 |
commit | 04c0256a8facd22044f6703f2ba99fa9ca0b6930 (patch) | |
tree | 28980eef6d1790d46b288b344972b3719ee75faf /mk/suffix.mk | |
parent | 96bb0a18787af228f8e45e9a8490b082ad4402f2 (diff) | |
download | haskell-04c0256a8facd22044f6703f2ba99fa9ca0b6930.tar.gz |
remove empty .SECONDARY target
This works around a problem with recent versions of GNU make that take
a long time when all targets are declared intermediate with
.SECONDARY. See
https://savannah.gnu.org/bugs/?func=detailitem&item_id=15584
for discussion of the GNU make issue.
Diffstat (limited to 'mk/suffix.mk')
-rw-r--r-- | mk/suffix.mk | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mk/suffix.mk b/mk/suffix.mk index f45682ffb9..984c311ef4 100644 --- a/mk/suffix.mk +++ b/mk/suffix.mk @@ -22,10 +22,6 @@ .DELETE_ON_ERROR: -# This line prevents GNU make from deleting any intermediate targets: - -.SECONDARY: - #----------------------------------------------------------------------------- # Haskell Suffix Rules |