diff options
author | ru <ru@FreeBSD.org> | 2007-10-01 18:17:24 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2007-10-01 18:17:24 +0000 |
commit | 62d48a1604c31ca3959932216d8b9735207c594d (patch) | |
tree | 8e141ebf7b45244d28ef5e9cbd08f0efd4d30f5e /libexec | |
parent | 0de18b1b0a14db0095b700d2d40a742b327ea811 (diff) | |
download | FreeBSD-src-62d48a1604c31ca3959932216d8b9735207c594d.zip FreeBSD-src-62d48a1604c31ca3959932216d8b9735207c594d.tar.gz |
Fixed static linkage (build with -DNO_SHARED).
Approved by: re (kensmith)
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/atrun/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/atrun/Makefile b/libexec/atrun/Makefile index c922dc5..4e3d4cc 100644 --- a/libexec/atrun/Makefile +++ b/libexec/atrun/Makefile @@ -16,7 +16,7 @@ CFLAGS+=-DLOGIN_CAP -DPAM WFORMAT=0 DPADD= ${LIBPAM} ${LIBUTIL} -LDADD= -lpam -lutil +LDADD= ${MINUSLPAM} -lutil atrun.8: atrun.man @${ECHO} Making ${.TARGET:T} from ${.ALLSRC:T}; \ |