diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2008-09-23 15:55:30 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2008-09-23 15:55:30 +0000 |
commit | 3b584566735a5260b68e5c6b050a71f40957385c (patch) | |
tree | 46f5dfbe7edd59c08cf74aaacd913c9682d40f29 /Text | |
parent | fcb220a7a4552315d2403c98305ed7a7c2c98276 (diff) | |
download | pandoc-3b584566735a5260b68e5c6b050a71f40957385c.tar.gz |
Moved odt-styles/ to data/. Removed unneeded variable in Makefile.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1458 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'Text')
-rw-r--r-- | Text/Pandoc/ODT.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Text/Pandoc/ODT.hs b/Text/Pandoc/ODT.hs index 10cf1b7e2..f9e4dd8f1 100644 --- a/Text/Pandoc/ODT.hs +++ b/Text/Pandoc/ODT.hs @@ -46,7 +46,7 @@ saveOpenDocumentAsODT :: FilePath -- ^ Pathname of ODT file to be produced. -> String -- ^ OpenDocument XML contents. -> IO () saveOpenDocumentAsODT destinationODTPath sourceDirRelative xml = do - let refArchive = read $(makeZip "odt-styles") + let refArchive = read $(makeZip $ "data" </> "odt-styles") -- handle pictures let (newContents, pics) = case runParser pPictures [] "OpenDocument XML contents" xml of |