X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2FMakefile.am;h=844e0a4d0eefe569c6cacca3fb3ee4be248d4026;hb=94a8bf0d6c869b1e6bde637dd25666d2f4cb7052;hp=29e7d92122010a7bba401b8cb8b24d289e24da6e;hpb=ec149da51a7349cd747549c484a9019515922e72;p=liboping.git diff --git a/src/Makefile.am b/src/Makefile.am index 29e7d92..844e0a4 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -46,7 +46,7 @@ bin_PROGRAMS += noping noping_SOURCES = oping.c noping_CPPFLAGS = $(AM_CPPFLAGS) -DUSE_NCURSES=1 -noping_LDADD = liboping.la -lm -lncurses +noping_LDADD = liboping.la -lm $(NCURSES_LIB) if BUILD_WITH_LIBRT noping_LDADD += -lrt endif @@ -56,11 +56,11 @@ install-exec-hook: @if test "x0" = "x$$UID"; then \ if test "xLinux" = "x`uname -s`"; then \ echo "Setting CAP_NET_RAW capability on binaries."; \ - setcap cap_net_raw=ep $(DESTDIR)$(bindir)/oping; \ - setcap cap_net_raw=ep $(DESTDIR)$(bindir)/noping; \ + setcap cap_net_raw=ep $(DESTDIR)$(bindir)/oping || true; \ + setcap cap_net_raw=ep $(DESTDIR)$(bindir)/noping || true; \ else \ echo "Setting set-UID bit on binaries."; \ - chmod u+s $(DESTDIR)$(bindir)/oping; \ - chmod u+s $(DESTDIR)$(bindir)/noping; \ + chmod u+s $(DESTDIR)$(bindir)/oping || true; \ + chmod u+s $(DESTDIR)$(bindir)/noping || true; \ fi; \ fi