summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbringert <bringert@cs.chalmers.se>2007-07-04 13:26:17 +0000
committerbringert <bringert@cs.chalmers.se>2007-07-04 13:26:17 +0000
commit7114ca47af2b22ead977f629b049cb70d1e1302f (patch)
treec80134f695e033bd8318afd8df8de882300c5679
parent74bb2ffdf3d3abc274c5017232321dc4f2f54067 (diff)
Fixed NOINLINE bug in Today.hs
-rw-r--r--src/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index eda520656..907ecde9e 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -130,11 +130,13 @@ ghci-nofud:
today:
echo 'module GF.Today (today,version,libdir) where' > GF/Today.hs
- echo '{-# NOINLINE today,version,libdir #-}' >> GF/Today.hs
+ echo '{-# NOINLINE today #-}' >> GF/Today.hs
echo 'today :: String' >> GF/Today.hs
echo 'today = "'`date`'"' >> GF/Today.hs
+ echo '{-# NOINLINE version #-}' >> GF/Today.hs
echo 'version :: String' >> GF/Today.hs
echo 'version = "'$(PACKAGE_VERSION)'"' >> GF/Today.hs
+ echo '{-# NOINLINE libdir #-}' >> GF/Today.hs
echo 'libdir :: String' >> GF/Today.hs
echo 'libdir = "'$(GF_DATA_DIR)/lib'"' >> GF/Today.hs