solaris - Unexpected end of line seen: Makefile -



solaris - Unexpected end of line seen: Makefile -

have setup.mk file following:

cc = gcc cflags += -g -o2 -c -wall -pthreads ver = 64 ifneq (32, $(ver)) <tab>cc += -m64 # line 26 endif processor = big ifeq (little, $(processor)) <tab>cflags += -dlittle_endian endif

when create through command line, works fine. when create through deployment tool (vulcan), however, next error:

"make: fatal error in reader: /[path]/setup.mk, line 26: unexpected end of line seen"

note following:

>echo $path >/usr/gnu/bin:/usr/sbin:/usr/bin >which create >/usr/gnu/bin/make

logged in same user when deploying through vulcan (using sshexec run start_make.sh script).

thanks help in advance!

makefile solaris gnu-make

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -