Skip to content

flex: fix WARNING: 'aclocal-1.15' is missing on your system. #2183

Merged
merged 1 commit into from
Aug 20, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion flex.be0
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env beesh

# BEE_VERSION flex-2.6.4-1
# BEE_VERSION flex-2.6.4-2

# more info: https://github.com/westes/flex
# https://www.archlinux.org/packages/core/x86_64/flex/
Expand All @@ -22,6 +22,12 @@ PATCHURL+=( "https://beehive.molgen.mpg.de/0a8e8242b37c57b0bc0c6f673bceb5b7/flex
# bee_patch "${@}"
#}

# delivered configure wants aclocal-1.15
mee_configure_pre() {
cd ${S}
./autogen.sh
}

mee_configure() {
bee_configure \
--disable-nls
Expand Down