diff options
| author | bringert <bringert@cs.chalmers.se> | 2007-07-04 13:26:17 +0000 |
|---|---|---|
| committer | bringert <bringert@cs.chalmers.se> | 2007-07-04 13:26:17 +0000 |
| commit | 7114ca47af2b22ead977f629b049cb70d1e1302f (patch) | |
| tree | c80134f695e033bd8318afd8df8de882300c5679 /src/Makefile | |
| parent | 74bb2ffdf3d3abc274c5017232321dc4f2f54067 (diff) | |
Fixed NOINLINE bug in Today.hs
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 4 |
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 |
