summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2022-08-05 22:42:06 -0400
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-08-25 20:05:31 -0400
commit659502bc4f78ccba1b35d06eeaa934f2614f1706 (patch)
treeb948695309a8e9adfe7e8a7735431ec42112dbaa
parentfe9d824d87d3caa28f16b06602d62ba59eb3b44e (diff)
downloadhaskell-659502bc4f78ccba1b35d06eeaa934f2614f1706.tar.gz
Drop mkdirhier
This is only used by nofib's dead `dist` target
-rw-r--r--mk/config.mk.in2
-rw-r--r--utils/mkdirhier/Makefile15
-rw-r--r--utils/mkdirhier/mkdirhier.sh4
3 files changed, 0 insertions, 21 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in
index 6fc80d46ef..f2afbb6f00 100644
--- a/mk/config.mk.in
+++ b/mk/config.mk.in
@@ -387,8 +387,6 @@ SRC_HC_WARNING_OPTS_STAGE2 =
# -----------------------------------------------------------------------------
# Names of programs in the GHC tree
-MKDIRHIER = $(INPLACE_BIN)/mkdirhier
-
GENERATED_FILE = chmod a-w
EXECUTABLE_FILE = chmod +x
diff --git a/utils/mkdirhier/Makefile b/utils/mkdirhier/Makefile
deleted file mode 100644
index 363ccd1cd1..0000000000
--- a/utils/mkdirhier/Makefile
+++ /dev/null
@@ -1,15 +0,0 @@
-# -----------------------------------------------------------------------------
-#
-# (c) 2009 The University of Glasgow
-#
-# This file is part of the GHC build system.
-#
-# To understand how the build system works and how to modify it, see
-# https://gitlab.haskell.org/ghc/ghc/wikis/building/architecture
-# https://gitlab.haskell.org/ghc/ghc/wikis/building/modifying
-#
-# -----------------------------------------------------------------------------
-
-dir = utils/mkdirhier
-TOP = ../..
-include $(TOP)/mk/sub-makefile.mk
diff --git a/utils/mkdirhier/mkdirhier.sh b/utils/mkdirhier/mkdirhier.sh
deleted file mode 100644
index 80762f41ec..0000000000
--- a/utils/mkdirhier/mkdirhier.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-
-mkdir -p ${1+"./$@"}
-