Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
cronie: Run autoconf
configure is not supplied by the package, so bee will use the build type
autogen instead auf autotools.

The autogen build type just runs autogen.sh with all the
configuration options. It is assumed, that autogen.sh accept these
options and runs all autoconf and configure steps as required,

Generally this can't be expected and specifically this is not true
for cronie. For one, some auxicliary files are missing (which can be
created by autoreconf -i). Second, the config parameters need to be
passed to configure not to autogen.

Run `autoreconf -i` in bee_patch. Because this generates `configure`,
the bee buildtype will be switched to autotools.
  • Loading branch information
donald committed May 24, 2018
1 parent 3ac6306 commit 490015b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cronie.be0
Expand Up @@ -43,9 +43,10 @@ build_in_sourcedir
# bee_extract "${@}"
#}

#mee_patch() {
# bee_patch "${@}"
#}
mee_patch() {
bee_patch "${@}"
start_cmd autoreconf -i
}

mee_configure() {
bee_configure --with-pam
Expand Down

0 comments on commit 490015b

Please sign in to comment.