aitjcize / cppman

C++ 98/11/14 manual pages for Linux/MacOS
GNU General Public License v3.0
1.29k stars 81 forks source link

error: can't copy 'README': doesn't exist or not a regular file #11

Closed biergaizi closed 11 years ago

biergaizi commented 11 years ago

Because GitHub uses README.md for manual, so there will be an error message while setup.py install is running.

error: can't copy 'README': doesn't exist or not a regular file

This error will cause setup.py returns 1, then the automatic tools will abort.

So, please make a symbol link README to README.md, or change this line in setup.py:

- ['README', 'AUTHORS', 'COPYING', 'ChangeLog']
+ ['README.md', 'AUTHORS', 'COPYING', 'ChangeLog']
aitjcize commented 11 years ago

fixed, thanks for reporting