-
Notifications
You must be signed in to change notification settings - Fork 0
Conversation
This is just a rewrite of #153 with all the background info in the commits. Left out the fix to disable ls-F color, because I'm not sure about actual problem. I guess its not to important. |
The gcc compiler optimization to replace a call of malloc followed by a call of memset with a calloc call conflicts with tcshs own implementation of calloc, which calls malloc and memset. This bug is reported to and acknowledged by the maintainer ( http://mx.gw.com/pipermail/tcsh-bugs/2015-May/000930.html ) and should be fixed in the next tcsh release.
The build script incorrectly installed the csh symlink into $BEE_BINDIR, which is the bin directory of the "bee" command instead of into $BINDIR which is the bin directory of the package. Usually this is the same.
This avoids a fork an a chdir.
unusuable to unusable in the last commit message. Besides that, I like it. I’d wait for @thomas to comment. PS: GitHub shows the wrong order in the tab commits. |
Seems to be by author date (as https://help.github.com/articles/why-are-my-commits-in-the-wrong-order/ :
|
Due to an incompatible compiler optimization, 6.19.00-0 is unusable. This revision contains a fix ( -fno-optimize-strlen ). See related commit.
Indeed, that was my explanation too. I fixed the typo in the commit message, and force pushed it. |
Gute Loesung, Merci. |
This is just a rewrite of #153 with all the background info in the commits. Left out the fix to disable ls-F color, because I'm not sure about actual problem. I guess its not to important.