rnewson commented on PR #5604: URL: https://github.com/apache/couchdb/pull/5604#issuecomment-3104764698
the reason package building was failing is that gun and cowlib are built with `erlang.mk` which puts the `$app.app` file under `ebin`. the couchdb top-level makefile calls `rebar -r clean` but _also_ does `rm -rf src/*/ebin` which blows away the `.app` files for the two new deps, and then a subsequent attempt by `rebar` to build them fails, because it doesn't think the directory is an erlang application without that file. so I've tweaked makefile to cleanup all files under `src/*/ebin` except those two files. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
