02-05-2016, 09:35 PM
(This post was last modified: 02-05-2016, 09:36 PM by LogicParrot.)
(02-05-2016, 07:11 PM)PureTryOut Wrote: Strange, my last reply doesn't seem to be copied with the forum move.
Anyways I use the compile script mentioned in the README.md on Github, the one using wget. I do however believe the same thing happens by directly pulling the source from Github and running compile.sh from there.
Output of your command @LogicParrot:
Code:$ make --help || echo "Hello world"
usage: make [-BeikNnqrstWwX]
[-C directory] [-D variable] [-d flags] [-f makefile]
[-I directory] [-J private] [-j max_jobs] [-m directory] [-T file]
[-V variable] [variable=value] [target ...]
Hello world
As expected basically...
I've seen that comment. Previously, I used `--help` to detect if make exists. As evidenced by your output, this doesn't work on BSD. But I've fixed this by using `command -v` instead. Have you tried compiling recently?