Closed thomasschaeferm closed 4 years ago
I do not see evidence of that in the terminal output you posted. Could you elaborate?
I am confused by
tayga is already the newest version (0.9.2-8).
and the last lines (of comment / code/ comments with code?)
Well, the installdeps
target calls apt-get -y install ... tayga
unconditionally on Debian-based distros. However, since it was already installed, this becomes a no-op with this message.
The last couple of lines are surrounded by if ..; then ...; fi
constructs that make sure that they only run if the distro is using yum
or dnf
, and if /usr/sbin/tayga
isn't installed. To me it appears as if those if
conditionals did their job correctly by not actually attempting to install anything on your distribution. (if test -x ""
is essentially the same as if false
, which means the rest of the line will not be executed.)
It is the default behaviour of make
to echo back the entire commands in the Makefile
as they are being evaluated, for what it is worth.
Thank you for the explanation.