Hello:
I am attempting to install Ansible on Unix Solaris. So I downloaded the src and am attempting to
$ make
make: Fatal error in reader: Makefile, line 26: Unexpected end of line seen
26 ifneq ($(shell which a2x 2>/dev/null),)
27 ASCII2MAN = a2x -L -D $(dir $@) -d manpage -f manpage $<
28 ASCII2HTMLMAN = a2x -L -D docs/html/man/ -d manpage -f xhtml
29 else
30 ASCII2MAN = @echo “ERROR: AsciiDoc ‘a2x’ command is not installed but is required to build $(MANPAGES)” && exit 1
31 endif
when I tried gmake, I also encountered errors:
bash-3.2$ /usr/sfw/bin/gmake
/bin/sh: git: not found
/bin/sh: git: not found
/bin/sh: git: not found
date: illegal option – utc
date: illegal option – date=
usage: date [-u] mmddHHMM[[cc]yy][.SS]
date [-u] [+format]
date -a [-]sss[.fff]
Cleaning up distutils stuff
rm -rf build
rm -rf dist
rm -rf lib/ansible.egg-info/
Cleaning up byte compiled python stuff
find . -type f -regex “.*.py[co]$” -delete
find: bad option -regex
find: [-H | -L] path-list predicate-list
gmake: *** [clean] Error 1
Thanks for any help.
–Harvey