diff options
author | https://www.google.com/accounts/o8/id?id=AItOawkSq2FDpK2n66QRUxtqqdbyDuwgbQmUWus <Jimmy@web> | 2011-03-23 16:02:35 +0000 |
---|---|---|
committer | admin <admin@branchable.com> | 2011-03-23 16:02:35 +0000 |
commit | 328b023c5381513cb0b9fb00f832cb8251799b4a (patch) | |
tree | 0550e31877cf924346da322812ab4ab8f0c8c84c /doc | |
parent | da198e87fb87430a8d5325d3f793ceeb8f746677 (diff) |
Added a comment
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bugs/Makefile_is_missing_dependancies/comment_4_cc13873175edf191047282700315beee._comment | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/doc/bugs/Makefile_is_missing_dependancies/comment_4_cc13873175edf191047282700315beee._comment b/doc/bugs/Makefile_is_missing_dependancies/comment_4_cc13873175edf191047282700315beee._comment new file mode 100644 index 000000000..c3ad2dafd --- /dev/null +++ b/doc/bugs/Makefile_is_missing_dependancies/comment_4_cc13873175edf191047282700315beee._comment @@ -0,0 +1,30 @@ +[[!comment format=mdwn + username="https://www.google.com/accounts/o8/id?id=AItOawkSq2FDpK2n66QRUxtqqdbyDuwgbQmUWus" + nickname="Jimmy" + subject="comment 4" + date="2011-03-23T16:02:34Z" + content=""" +Ok, well it looks like it isn't doing anything useful at all. + +<pre> +jtang@x00:~/develop/git-annex $ make StatFS.hs +hsc2hs StatFS.hsc +perl -i -pe 's/^{-# INCLUDE.*//' StatFS.hs +jtang@x00:~/develop/git-annex $ ghci StatFS.hs +GHCi, version 6.12.3: http://www.haskell.org/ghc/ :? for help +Loading package ghc-prim ... linking ... done. +Loading package integer-gmp ... linking ... done. +Loading package base ... linking ... done. +Loading package ffi-1.0 ... linking ... done. +[1 of 1] Compiling StatFS ( StatFS.hs, interpreted ) +Ok, modules loaded: StatFS. +*StatFS> s <- getFileSystemStats \".\" +Loading package bytestring-0.9.1.7 ... linking ... done. +*StatFS> s +Just (FileSystemStats {fsStatBlockSize = 0, fsStatBlockCount = 1048576, fsStatByteCount = 0, fsStatBytesFree = 0, fsStatBytesAvailable = 0, fsStatBytesUsed = 0}) +*StatFS> s <- getFileSystemStats \"/\" +*StatFS> s +Just (FileSystemStats {fsStatBlockSize = 0, fsStatBlockCount = 1048576, fsStatByteCount = 0, fsStatBytesFree = 0, fsStatBytesAvailable = 0, fsStatBytesUsed = 0}) +*StatFS> +</pre> +"""]] |