Github user micah commented on the pull request:
https://github.com/apache/couchdb/pull/302#issuecomment-110468272
>>those don't get cleaned up on a distclean, adding these to the Makefile
would fix that
>>```@rm -f share/www/script/test/lorem.txt```
>>```@rm -f share/www/script/test/lorem_b64.txt```
> These should be covered by
>```@rm -rf share/www```
>in distclean (when you run distclean from within the extracted tarball
directory
You are right, but it seems like the ```IN_RELEASE``` test in the distclean
is testing to see if the value is set to 'false' and then if it is false, clean
up those things... but shouldn't it be testing to see if it is "true", because
I *am* IN_RELEASE? If so, then this needs to be changed:
```ifneq ($(IN_RELEASE), true)```
to this:
```ifeq ($(IN_RELEASE), true)```
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---