diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-12-01 23:43:49 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-12-01 23:43:49 +0000 |
commit | d34e0138614715d2c5ee3060e84552c15c8200bb (patch) | |
tree | 649f908f5c6fd05b48d5c88da5cf520b414012fb /usr.sbin/screenblank/Makefile | |
parent | 6989274f0e73f7f7728cfac6e0f8449df75dafd9 (diff) |
Revert previous, as pidfile() uses atexit(), which is no use if we call
_exit() in signal handlers.
Noticed by Theo.
Diffstat (limited to 'usr.sbin/screenblank/Makefile')
-rw-r--r-- | usr.sbin/screenblank/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/screenblank/Makefile b/usr.sbin/screenblank/Makefile index 0b6d3ae072d..b13c5a3e1b4 100644 --- a/usr.sbin/screenblank/Makefile +++ b/usr.sbin/screenblank/Makefile @@ -1,10 +1,10 @@ -# $OpenBSD: Makefile,v 1.4 2001/12/01 23:27:24 miod Exp $ +# $OpenBSD: Makefile,v 1.5 2001/12/01 23:43:48 miod Exp $ .if ${MACHINE} == "sparc" || ${MACHINE} == "sun3" PROG= screenblank -LDADD+= -lm -lutil -DPADD+= ${LIBM} ${LIBUTIL} +DPADD= ${LIBM} +LDADD= -lm .else NOPROG=yes .endif |