asciidoc-py / asciidoc-py2

Deprecated python2 implementation of AsciiDoc.py. See asciidoc-py/asciidoc-py for current work.
https://asciidoc.org/
GNU General Public License v2.0
466 stars 128 forks source link

Not installing on Cygwin #142

Closed evandrocoan closed 4 years ago

evandrocoan commented 4 years ago

When I tried to install this with cgywin, it failed with the error:

Professional@PROFESSIONAL-PC:$ make install
Fixing CONF_DIR in asciidoc.py
Fixing CONF_DIR in a2x.py
/usr/bin/install -c -d //usr/local/bin
/usr/bin/install: cannot create directory ‘//usr’: Read-only file system
make: *** [Makefile:101: progdir] Error 1

After seeing this, I edited the Makefile and remove all $(DESTDIR)/ variables. And it worked correctly. This was happening because the $(DESTDIR) variable was not defined on the Makefile.

elextr commented 4 years ago

Please note that due to Python 2 end of life, this version of Asciidoc is no longer actively supported.

MasterOdin commented 4 years ago

Fixed in the supported asciidoc/asciidoc-py3@d0022f173e7f2d471d4f82b955837ddfd31cafd4 though.

evandrocoan commented 4 years ago

Thanks!