diff options
author | roktas <roktas@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2006-10-28 15:13:18 +0000 |
---|---|---|
committer | roktas <roktas@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2006-10-28 15:13:18 +0000 |
commit | 156be8b17af04d64b69110670eb557978024237b (patch) | |
tree | 5d5f71a789d85a18f1790731e22db027aab727b9 /configure | |
parent | f0a25e4be15408744b31b6c20a4690c631217ee1 (diff) | |
download | pandoc-156be8b17af04d64b69110670eb557978024237b.tar.gz |
Merge trunk with ghc66-branch.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@28 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'configure')
-rw-r--r-- | configure | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/configure b/configure deleted file mode 100644 index 064cd719a..000000000 --- a/configure +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -# GHC does not recognize any environment variable, unlike with GCC which honors -# CFLAGS. This hook is a workaround for this flaw and introduces an HCFLAGS -# variable. - -CABAL=Pandoc.cabal -BUILDINFO=${CABAL%%.cabal}.buildinfo - -[ -f $BUILDINFO.in ] || { - echo >&2 "==> No $BUILDINFO.in exists; skipping $BUILDINFO creation." - exit 0 -} - -if [ "${HCFLAGS-UNDEFINED}" = "UNDEFINED" ]; then - echo >&2 "==> No HCFLAGS defined; skipping $BUILDINFO creation." - exit 0 -fi - -sed -e "s#@HCFLAGS@#$HCFLAGS#g" $BUILDINFO.in >$BUILDINFO |