make: getversion: Command not found
A library and utilities for processing GIFs
Brought to you by:
abadger1999,
esr
When building GIFLIB 5.1.7, there are several make: getversion: Command not found errors.
Example for version target which shows only this problem and nothing else:
$ make version
make: getversion: Command not found
make: getversion: Command not found
make: getversion: Command not found
make: getversion: Command not found
make: getversion: Command not found
$
Trivial fix:
--- Makefile
+++ Makefile
@@ -24,7 +24,7 @@
# No user-serviceable parts below this line
-VERSION=$(shell getversion)
+VERSION=$(shell ./getversion)
LIBMAJOR=7
LIBMINOR=1
LIBPOINT=0
Output with this fix:
$ make version
5.1.7
$
bit me too.
also, should use := instead of = so the command is evaluated only once.
Applied. I'll ship 5.1.8 shortly.