From ac44fa5fba7ac748d0a123df1d32c7461589c110 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sat, 1 Aug 2009 21:26:04 +0000 Subject: [PATCH] Fix "make show" in a bindist --- Makefile | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 9f516b7..4e5fcbb 100644 --- a/Makefile +++ b/Makefile @@ -19,13 +19,9 @@ default: @echo 'Run "make install" to install' @false -.PHONY: install -install: - $(MAKE) -r --no-print-directory -f ghc.mk install BINDIST=YES NO_INCLUDE_DEPS=YES - -.PHONY: show -show: - $(MAKE) -r --no-print-directory -f ghc.mk $@ +.PHONY: install show +install show: + $(MAKE) -r --no-print-directory -f ghc.mk $@ BINDIST=YES NO_INCLUDE_DEPS=YES else -- 1.7.10.4