summaryrefslogtreecommitdiff
path: root/distrib
diff options
context:
space:
mode:
authorIan Lynagh <ian@well-typed.com>2012-10-11 15:34:46 +0100
committerIan Lynagh <ian@well-typed.com>2012-10-11 15:34:46 +0100
commitfe0efaaa646e91e75a649c28cf2a4f7bb52fe96d (patch)
tree051a4696b3c593004dc10c0ce42455f3c2fefb07 /distrib
parent2f40085129120a6f485e3bd443afe686b7edbcc2 (diff)
downloadhaskell-fe0efaaa646e91e75a649c28cf2a4f7bb52fe96d.tar.gz
Remove fake-happy; it's no longer useful
Diffstat (limited to 'distrib')
-rw-r--r--distrib/fake-happy20
1 files changed, 0 insertions, 20 deletions
diff --git a/distrib/fake-happy b/distrib/fake-happy
deleted file mode 100644
index d53152f5c2..0000000000
--- a/distrib/fake-happy
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-#
-# This is a script that simulates the "-v" output of Happy 1.10.
-# It is useful for running configure on a system without Happy.
-# (You can set the environment variable HappyCmd=path/to/fake-happy
-# to fool configure into thinking that it has found Happy here.)
-
-if [ "$1" = "-v" ]; then
-cat <<'END'
-Happy Version 1.10 Copyright (c) 1993-1996 Andy Gill, Simon Marlow (c) 1997-2001 Simon Marlow
-
-Happy is a Yacc for Haskell, and comes with ABSOLUTELY NO WARRANTY.
-This program is free software; you can redistribute it and/or modify
-it under the terms given in the file 'LICENSE' distributed with
-the Happy sources.
-END
-else
-echo Fake happy is not happy! >&2
-exit 3
-fi