Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
autofs: Rebuild with --with-libtirpc
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
  • Loading branch information
donald committed Apr 2, 2021
1 parent 34d2778 commit 6ea15f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autofs.be0
@@ -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.)
Expand Down Expand Up @@ -54,7 +54,7 @@ build_in_sourcedir
#}

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

#mee_build() {
Expand Down

0 comments on commit 6ea15f9

Please sign in to comment.