diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-11-25 12:39:32 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-11-25 12:47:29 +0100 |
commit | 3432335ccab5911501698db54f04ac30a80cf961 (patch) | |
tree | 562ce79bf643f18a567e732f18d565c4fbb72587 /perl-install/Makefile.drakxtools | |
parent | 65628f0419978af9b9c3a564a9af1d549cb8d62c (diff) | |
download | drakx-3432335ccab5911501698db54f04ac30a80cf961.tar drakx-3432335ccab5911501698db54f04ac30a80cf961.tar.gz drakx-3432335ccab5911501698db54f04ac30a80cf961.tar.bz2 drakx-3432335ccab5911501698db54f04ac30a80cf961.tar.xz drakx-3432335ccab5911501698db54f04ac30a80cf961.zip |
Fix compiling with glibc-2.32
Old legacy RPC bits were finally axed so we need to link against libtirpc
Diffstat (limited to 'perl-install/Makefile.drakxtools')
-rw-r--r-- | perl-install/Makefile.drakxtools | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/Makefile.drakxtools b/perl-install/Makefile.drakxtools index e418c9e6d..431f3a85d 100644 --- a/perl-install/Makefile.drakxtools +++ b/perl-install/Makefile.drakxtools @@ -103,3 +103,6 @@ check: rm -f share/po/libDrakX.pot standalone/po/libDrakX-standalone.pot @make -C share/po libDrakX.pot @make -C standalone/po libDrakX-standalone.pot + +../tools/rpcinfo-flushed: + cd ../tools; gcc -Wall $(shell pkg-config libtirpc --cflags --libs) rpcinfo-flushed.c -o rpcinfo-flushed |