diff options
author | Ian Lynagh <igloo@earth.li> | 2008-08-12 23:25:44 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-08-12 23:25:44 +0000 |
commit | 1d124a1a6dd4b3814ec6f74b66b2f2eee23f9ece (patch) | |
tree | f04528f4da5d0d00dfbfa06d3646d6ecf9450506 | |
parent | 08bcdbe3ae0da0d2d670a47dfda34547d9c36d1a (diff) | |
download | haskell-1d124a1a6dd4b3814ec6f74b66b2f2eee23f9ece.tar.gz |
Only clean utils/pwd/pwd when distcleaning, not when cleaning
Otherwise "make clean" in utils leaves us without a pwd, and lots of bad
things happen.
-rw-r--r-- | utils/pwd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/pwd/Makefile b/utils/pwd/Makefile index fb43be8640..77fcdd9783 100644 --- a/utils/pwd/Makefile +++ b/utils/pwd/Makefile @@ -1,5 +1,5 @@ TOP=../.. -EXTRA_CLEAN = pwd pwd.exe pwd.hi pwd.o +EXTRA_DISTCLEAN = pwd pwd.exe pwd.hi pwd.o include $(TOP)/mk/boilerplate.mk include $(TOP)/mk/cabal.mk |