jimjag / epm

Updated ESP Package Manager (EPM)
https://jimjag.github.io/epm/
Apache License 2.0
10 stars 8 forks source link

make install errors #13

Open dhpinkerton opened 1 year ago

dhpinkerton commented 1 year ago

$ sudo make install Installing EPM programs in /usr/local/bin Installing EPM manpages in /usr/local/share/man/man1 make[1]: d: Command not found /bin/sh: line 1: -c: command not found /bin/sh: line 1: -c: command not found /bin/sh: line 1: -c: command not found /bin/sh: line 1: -c: command not found make[1]: [Makefile:87: install] Error 127 make: [Makefile:163: install] Error 2

$ sudo make -n install echo Installing EPM programs in /usr/local/bin /usr/bin/install -c -d -m 755 /usr/local/bin for file in epm epminstall mkepmlist; do \ /usr/bin/install -c -c -m 755 $file /usr/local/bin; \ done (cd doc; make -ns install) echo Installing EPM manpages in /usr/local/share/man/man1 d -m 755 /usr/local/share/man/man1 for file in epm.1 epminstall.1 mkepmlist. setup.1; do \ -c -m 644 $file /usr/local/share/man/man1; \ done echo Installing EPM manpages in /usr/local/share/man/man5 d -m 755 /usr/local/share/man/man5 for file in epm.list.5 setup.types.5; do \ -c -m 644 $file /usr/local/share/man/man5; \ done echo Installing EPM documentation in d -m 755 for file in ./COPYING ./README.md epm-book.epub epm-book.html epm-book.pdf; do \ -c -m 644 $file ; \ done

emthornber commented 8 months ago

doc/Makefile.in as held in the git repo does contain the definition of INSTALL (which was added 4 years ago). However the source tarball for v5.0.0 does not.