summaryrefslogtreecommitdiff
path: root/doc/bugs
diff options
context:
space:
mode:
authorGravatar https://www.google.com/accounts/o8/id?id=AItOawkSq2FDpK2n66QRUxtqqdbyDuwgbQmUWus <Jimmy@web>2011-02-13 15:12:11 +0000
committerGravatar admin <admin@branchable.com>2011-02-13 15:12:11 +0000
commit65d30ffc375259a0d09c914abf15057e8ef639c5 (patch)
tree8a4a3404eabde8397fd2f45c2238e96171de668d /doc/bugs
parented15a4e184a7d962d8f45dbadf640c24e397af0e (diff)
Added a comment: maybe killed another osx bug in the test.
Diffstat (limited to 'doc/bugs')
-rw-r--r--doc/bugs/Problems_running_make_on_osx/comment_18_64fab50d95de619eb2e8f08f90237de1._comment24
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/bugs/Problems_running_make_on_osx/comment_18_64fab50d95de619eb2e8f08f90237de1._comment b/doc/bugs/Problems_running_make_on_osx/comment_18_64fab50d95de619eb2e8f08f90237de1._comment
new file mode 100644
index 000000000..df76bb301
--- /dev/null
+++ b/doc/bugs/Problems_running_make_on_osx/comment_18_64fab50d95de619eb2e8f08f90237de1._comment
@@ -0,0 +1,24 @@
+[[!comment format=mdwn
+ username="https://www.google.com/accounts/o8/id?id=AItOawkSq2FDpK2n66QRUxtqqdbyDuwgbQmUWus"
+ nickname="Jimmy"
+ subject="maybe killed another osx bug in the test."
+ date="2011-02-13T15:12:10Z"
+ content="""
+I think I have figured out why
+
+ ### Failure in: 1:blackbox:3:git-annex unannex:1:with content
+ foo is not a symlink
+
+It goes back to the this piece of code (in test.hs)
+
+ copyrepo :: FilePath -> FilePath -> IO FilePath
+ copyrepo old new = do
+ cleanup new
+ ensuretmpdir
+ Utility.boolSystem \"cp\" [\"-pr\", old, new] @? \"cp -pr failed\"
+
+It seems that on OSX it does not preserve the symbolic link information, basically cp is not gnu cp on OSX, doing a \"cp -a SOURCE DEST\" seem's to the right thing on OSX. I tried it out on my archlinux workstation by replacing *-pr* with just *-a* and all the tests passed on archlinux.
+
+I'm not sure what the implications would be with changing the test with changing the cp command.
+
+"""]]