In /usr/bin/makeg line 12:
exec "$make" $flags LDSTRIPFLAGS= ${1+"$@"}
             ^----^ SC2086: Double quote to prevent globbing and word splitting.

Did you mean: 
exec "$make" "$flags" LDSTRIPFLAGS= ${1+"$@"}

For more information:
  https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...