diff options
-rw-r--r-- | etc/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/Makefile.inc b/etc/Makefile.inc index dd4fa4634c1..00b17f21730 100644 --- a/etc/Makefile.inc +++ b/etc/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.5 2009/06/03 15:36:54 todd Exp $ +# $OpenBSD: Makefile.inc,v 1.6 2009/06/03 17:02:17 todd Exp $ M=${.CURDIR:C/^.*\/etc\.([^\/]*)$/\1/} @@ -28,7 +28,7 @@ ${.CURDIR}/MAKEDEV: ${MAKEDEVSRC} -e 's/^[0-9,]*c[0-9,]*$$//' \ -e '/^$$/d' \ diffout1 > diffout2; \ - if ! [ -s diffout2 ]; then \ + if [ -s diffout2 ]; then \ echo " m4 -I.. -I. ../MAKEDEV.mi > MAKEDEV"; \ cp MAKEDEV.tmp ${.CURDIR}/MAKEDEV || true; \ ${NOCLEAN} rm MAKEDEV.tmp; \ |