diff mbox series

nfsrahead: fix linking while static linking

Message ID 20220809221252.772891-1-giulio.benetti@benettiengineering.com (mailing list archive)
State Superseded
Headers show
Series nfsrahead: fix linking while static linking | expand

Commit Message

Giulio Benetti Aug. 9, 2022, 10:12 p.m. UTC
-lmount must preceed -lblkid and to obtain this let's add:
`pkg-conf --libs mount`
in place of:
`-lmount`
This ways the library order will always be correct.

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
 tools/nfsrahead/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Giulio Benetti Aug. 9, 2022, 10:23 p.m. UTC | #1
Pardon, s/pkg-conf/pkg-config

I'm going to send V2

Best regards
diff mbox series

Patch

diff --git a/tools/nfsrahead/Makefile.am b/tools/nfsrahead/Makefile.am
index 845ea0d5..74fc344f 100644
--- a/tools/nfsrahead/Makefile.am
+++ b/tools/nfsrahead/Makefile.am
@@ -1,6 +1,6 @@ 
 libexec_PROGRAMS = nfsrahead
 nfsrahead_SOURCES = main.c
-nfsrahead_LDFLAGS= -lmount
+nfsrahead_LDFLAGS= `pkg-conf --libs mount`
 nfsrahead_LDADD = ../../support/nfs/libnfsconf.la
 
 man5_MANS = nfsrahead.man