Error in Makefile
Posted: Fri Jan 06, 2017 10:34 am
There seems to be a small error in the Makefile.
Line 31 was:
So this error is produced:
Line 31 was:
Make thinks this is using a make variable "dd" which is not set.test -d "${dd}" || mkdir -p "${dd}"; \
So this error is produced:
The fix is to use another "$" to tell make to pass the string "${dd}" to the shell....
test -d "" || mkdir -p ""; \
done
mkdir: cannot create directory ‘’: No such file or directory
mkdir: cannot create directory ‘’: No such file or directory
mkdir: cannot create directory ‘’: No such file or directory
mkdir: cannot create directory ‘’: No such file or directory
mkdir: cannot create directory ‘’: No such file or directory
make: *** [install] Error 1
Don (old Unix/Linux programmer)test -d "$${dd}" || mkdir -p "$${dd}"; \