diff options
author | simonmar <unknown> | 2004-08-13 10:42:34 +0000 |
---|---|---|
committer | simonmar <unknown> | 2004-08-13 10:42:34 +0000 |
commit | 1c82b947f92da21c57dcec6c65b570871e938f4c (patch) | |
tree | 77027635b1c12f2151e069a805405e75b720c1c3 /mk/paths.mk | |
parent | 311eedc1ebb812966ab9136d769fcd6b9e508faa (diff) | |
download | haskell-1c82b947f92da21c57dcec6c65b570871e938f4c.tar.gz |
[project @ 2004-08-13 10:42:34 by simonmar]
Fix to previous commit
Diffstat (limited to 'mk/paths.mk')
-rw-r--r-- | mk/paths.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/paths.mk b/mk/paths.mk index 07520ef822..6951116916 100644 --- a/mk/paths.mk +++ b/mk/paths.mk @@ -210,7 +210,7 @@ EXCLUDED_C_SRCS = $(patsubst %.lhs, %_stub.c, $(HS_SRCS)) \ endif # These are droppings from hsc2hs - ignore them if we see them. -EXCLUDED_C_SRCS = $(patsubst %.hsc, %_hsc_make.c, $(HSC_SRCS)) +EXCLUDED_C_SRCS += $(patsubst %.hsc, %_hsc_make.c, $(HSC_SRCS)) C_SRCS = $(filter-out $(EXCLUDED_C_SRCS),$(filter %.c,$(SRCS))) C_OBJS = $(addsuffix .$(way_)o,$(basename $(C_SRCS))) |