Chandler

Results 20 comments of Chandler

I noticed in the system messages, several Python crashes relating to this, for example: ```Aug 9 15:58:27 pac abrt: detected unhandled Python exception in '/usr/local/src/genometools-1.5.10/testdata/gtpython/sketch.py' Aug 9 15:58:28 pac abrt:...

I did try `make clean` and then enable the newer python with `scl enable rh-python35 bash`, then check `python --version` (it is Python 3.5.1), then run `make` and `make test`...

I had this error too and found this document, https://stackoverflow.com/questions/36461555/is-it-possible-to-statically-link-libstdc-and-wrap-memcpy So I edited the src/common/memcpyLink.h file so it looked like this: ``` #include __asm__(".symver memcpy,memcpy@GLIBC_2.2.5"); extern "C" { void *__wrap_memcpy(void...

Sorry I'm not sure then, @uoabowen ... it ran OK over here.

This version of bccp is `11.10.05.00.0`, from 2011. The forker says to check the original page on [standford.edu](https://www.slac.stanford.edu/~abh/bbcp/) for "Complete details", but didn't keep up with newer releases. Last release...

> > This version of bccp is `11.10.05.00.0`, from 2011 > > @AGI-chandler Actually, this version is later: > > ``` > ~$ bbcp --version > 14.04.14.00.1 > ``` Yes...

so the forker updated [src/bbcp_Version.C](https://github.com/eeertekin/bbcp/blob/64af83266da5ebb3fdc2f012ac7f5ce0230bc648/src/bbcp_Version.C) but not [MakeSname](https://github.com/eeertekin/bbcp/blob/master/MakeSname) that is shown on the home page.

Actually the original git repository is back up! `git clone https://www.slac.stanford.edu/~abh/bbcp/bbcp.git/` and it's version `17.12.00.00.0`, so see if `--infiles` works with it.

Hi I came across this issue as I'd like to do something similar.  I think it could be accomplished with _systemd_.  I have the basic pieces in place but the...

Thanks for the info @pjv!  I came up with this which so far has worked on recent Debian and CentOS systems: `/etc/profile.d/et.sh`: ``` if [[ -v ET_VERSION ]]; then uname...