aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/Android_chroot_stuck_in_Cabal_hell.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2017-09-29 12:55:42 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2017-09-29 12:55:42 -0400
commit0dfc1d4e6eb37aadaba47a210539b2438fba97f5 (patch)
treee0beee12909c581f06829060a93a72d6686ca730 /doc/bugs/Android_chroot_stuck_in_Cabal_hell.mdwn
parentbd2a9fb40ef0bbe812e8ea375a5caabd6e628ef2 (diff)
remove old closed bugs and todo items to speed up wiki updates and reduce size
Remove closed bugs and todos that were last edited or commented before 2017. Command line used: for f in $(grep -l '|done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=01-01-2017 --pretty=oneline -- "$f")" -a -z "$(git log --since=01-01-2017 --pretty=oneline -- "$d")" ]; then git rm -- "./$f" ; git rm -rf "./$d"; fi; done for f in $(grep -l '\[\[done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=01-01-2017 --pretty=oneline -- "$f")" -a -z "$(git log --since=01-01-2017 --pretty=oneline -- "$d")" ]; then git rm -- "./$f" ; git rm -rf "./$d"; fi; done
Diffstat (limited to 'doc/bugs/Android_chroot_stuck_in_Cabal_hell.mdwn')
-rw-r--r--doc/bugs/Android_chroot_stuck_in_Cabal_hell.mdwn22
1 files changed, 0 insertions, 22 deletions
diff --git a/doc/bugs/Android_chroot_stuck_in_Cabal_hell.mdwn b/doc/bugs/Android_chroot_stuck_in_Cabal_hell.mdwn
deleted file mode 100644
index 1cca413a6..000000000
--- a/doc/bugs/Android_chroot_stuck_in_Cabal_hell.mdwn
+++ /dev/null
@@ -1,22 +0,0 @@
-### Please describe the problem.
-I'm trying to get an Android development environment set up, but I am running into conflicting library versions inside of the chroot. The package installation script now finishes, but I run into a link-time error during `cabal configure` because it is pulling in two different versions of the unix package for some reason. Please let me know if there is any information I can get from my build environment that would help diagnosing the issue.
-
-### What steps will reproduce the problem?
-Run `buildchroot`, `install-haskell-packages`, `make android`
-
-### What version of git-annex are you using? On what operating system?
-Attempting to build from source, cross-compiling for Android on Debian Jessie.
-
-### Please provide any additional information below.
-
-[[!format sh """
-Linking ./dist/setup/setup ...
-/usr/lib/ghc/unix-2.6.0.1/libHSunix-2.6.0.1.a(execvpe.o): In function `pPrPr_disableITimers':
-(.text+0x300): multiple definition of `pPrPr_disableITimers'
-/home/builder/.cabal/lib/i386-linux-ghc-7.6.3/unix-2.7.1.0/libHSunix-2.7.1.0.a(ghcrts.o):ghcrts.c:(.text+0x0): first defined here
-collect2: error: ld returned 1 exit status
-Makefile:225: recipe for target 'android' failed
-make: *** [android] Error 1
-"""]]
-
-> [[fixed|done]] --[[Joey]]