Skip to content

Commit

Permalink
libev: Fix includedir
Browse files Browse the repository at this point in the history
The be0 conversion did more than advertized, and used the new bee file
template, but forgot to migrate the INCLUEDIR variable setting. This
causes a conflict for the header file `/usr/include/event.h`.

    $ sudo bee query /usr/include/event.h
    libev-4.11-1.x86_64
      /usr/include/event.h
    libevent-2.0.21-0.x86_64
      /usr/include/event.h

This causes several build errors, as the one from libevent is expected
by most programs.

Fix this, by changing the include directory again.

Increment the revision to 2.

Fixes: 2b7d809 ("libev: be0 conversion and update SRCURL")
  • Loading branch information
pmenzel committed Nov 25, 2019
1 parent 0ec88bb commit 0132473
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libev.be0
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env beesh

# BEE_VERSION libev-4.11-1
# BEE_VERSION libev-4.11-2

SRCURL[0]="https://github.com/justmirror/libev/archive/${PKGVERSION}.tar.gz libev-${PKGVERSION}.tar.gz"

Expand All @@ -10,6 +10,8 @@ SRCURL[0]="https://github.com/justmirror/libev/archive/${PKGVERSION}.tar.gz libe

# sourcesubdir_append src

INCLUDEDIR='${PREFIX}/include/ev'

#mee_extract() {
# bee_extract "${@}"
#}
Expand Down

0 comments on commit 0132473

Please sign in to comment.