Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
autofs: Rebuild with --with-libtirpc
Browse files Browse the repository at this point in the history
Fix

   ./include/rpc_subs.h:19:10: fatal error: rpc/rpc.h: No such file or directory
    #include <rpc/rpc.h>
             ^~~~~~~~~~~

libtirpc provides the include files in another directory than glibc did.

Add --with-libtirpc so that pkg_config is used to pick up the right
include path:

    $ pkg-config --cflags libtirpc
    -I/usr/include/tirpc
donald committed Apr 2, 2021
1 parent 3b0354c commit 69d7251
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autofs.be0
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env beesh

# BEE_VERSION autofs-5.1.7-0
# BEE_VERSION autofs-5.1.7-1

## this file was created by bee init and should be executed to build a
## bee-package. (Additional hints are located at the end of this file.)
@@ -54,7 +54,7 @@ build_in_sourcedir
#}

mee_configure() {
bee_configure --enable-ignore-busy
bee_configure --enable-ignore-busy --with-libtirpc
}

#mee_build() {

0 comments on commit 69d7251

Please sign in to comment.