-
Notifications
You must be signed in to change notification settings - Fork 315
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added plans for building apr and apr-util. #124
Conversation
This PR has passed 'Verify' and is ready for review and approval! |
There is a plan step for install, so you don't have to include the make install in build (you'll win up calling make install twice). In the apr plan, there is no need for anything at - you should be able to delete do_build altogether, since it follows basic convention. |
do_build() { | ||
./configure --prefix=${pkg_prefix} --with-apr=$(pkg_path_for chef/apr) | ||
make | ||
make install |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can remove this make install
This PR has passed 'Verify' and is ready for review and approval! |
@delivery approve |
Merged change bb262fe6-b304-40c9-a514-85cf9205128f From review branch jcd/apr-plan into master Signed-off-by: adam <[email protected]>
Change: bb262fe6-b304-40c9-a514-85cf9205128f approved by: @adamhjk |
I wrote these plans to better understand
bldr
and figured I might as well contribute them to the project for future use.