From 2b52241928890e48a30bf243a71282be5348a938 Mon Sep 17 00:00:00 2001
From: fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>
Date: Thu, 29 Nov 2007 02:02:38 +0000
Subject: [PATCH] Changed references to source directory in Makefile and
 pandoc.cabal.*.

git-svn-id: https://pandoc.googlecode.com/svn/trunk@1105 788f1e2b-df1e-0410-8736-df70ead52e1b
---
 Makefile           | 2 +-
 pandoc.cabal       | 4 ++--
 pandoc.cabal.ghc66 | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/Makefile b/Makefile
index 2563f78c9..6c0d6ee15 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@
 # Constant names and commands in source tree
 #-------------------------------------------------------------------------------
 CABAL     := pandoc.cabal
-SRCDIR    := src
+SRCDIR    := .
 MANDIR    := man
 TESTDIR   := tests
 BUILDDIR  := dist
diff --git a/pandoc.cabal b/pandoc.cabal
index efd8bc9bd..d609b923e 100644
--- a/pandoc.cabal
+++ b/pandoc.cabal
@@ -42,7 +42,7 @@ Library
   else
     Build-Depends: base < 3
   Build-Depends: parsec, xhtml, mtl, regex-compat, network
-  Hs-Source-Dirs:  src
+  Hs-Source-Dirs:  .
   Exposed-Modules: Text.Pandoc,
                    Text.Pandoc.Blocks,
                    Text.Pandoc.Definition,
@@ -68,7 +68,7 @@ Library
   Ghc-Prof-Options: -auto-all
 
 Executable pandoc
-  Hs-Source-Dirs:  src
+  Hs-Source-Dirs:  .
   Main-Is:         Main.hs
   Ghc-Options:     -O2
   Ghc-Prof-Options: -auto-all
diff --git a/pandoc.cabal.ghc66 b/pandoc.cabal.ghc66
index 067a31c66..ad26f0418 100644
--- a/pandoc.cabal.ghc66
+++ b/pandoc.cabal.ghc66
@@ -32,7 +32,7 @@ Description:     Pandoc is a Haskell library for converting from one markup
                  format. Thus, adding an input or output format requires
                  only adding a reader or writer.
 Build-Depends:   base, parsec, xhtml, mtl, regex-compat, network
-Hs-Source-Dirs:  src
+Hs-Source-Dirs:  .
 Exposed-Modules: Text.Pandoc,
                  Text.Pandoc.Blocks,
                  Text.Pandoc.Definition,
@@ -57,6 +57,6 @@ Exposed-Modules: Text.Pandoc,
 Ghc-Options:     -O0
 
 Executable:      pandoc
-Hs-Source-Dirs:  src
+Hs-Source-Dirs:  .
 Main-Is:         Main.hs
 Ghc-Options:     -O0