pwdx: Do not link to libprocps

pwdx doesn't actually use any of the libprocps functions but
it is linked because it is the default.  This specific LDADD
removes that unrequired linking.
This commit is contained in:
Craig Small 2015-06-24 22:27:24 +10:00
parent 9e85c147b2
commit 6a0850be7b
2 changed files with 1 additions and 1 deletions

View File

@ -125,6 +125,7 @@ pgrep_SOURCES = pgrep.c lib/fileutils.c lib/nsutils.c
pkill_SOURCES = pgrep.c lib/fileutils.c lib/nsutils.c
pmap_SOURCES = pmap.c lib/fileutils.c
pwdx_SOURCES = pwdx.c lib/fileutils.c
pwdx_LDADD=
sysctl_SOURCES = sysctl.c lib/fileutils.c
tload_SOURCES = tload.c lib/strutils.c lib/fileutils.c
uptime_SOURCES = uptime.c lib/fileutils.c

1
pwdx.c
View File

@ -26,7 +26,6 @@
#include <sys/types.h>
#include <unistd.h>
#include "proc/version.h"
#include "c.h"
#include "nls.h"
#include "xalloc.h"