diff options
author | pst <pst@FreeBSD.org> | 1994-11-01 09:14:39 +0000 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1994-11-01 09:14:39 +0000 |
commit | 29b3feea69b80384007750bcf541e31e7692955f (patch) | |
tree | 23f3d3e8bd2a45507c64ded5df6ef35826241236 /lib/libmd/Makefile | |
parent | ad211229f081e45c80094fd7961d86ac5f55f4e9 (diff) | |
download | FreeBSD-src-29b3feea69b80384007750bcf541e31e7692955f.zip FreeBSD-src-29b3feea69b80384007750bcf541e31e7692955f.tar.gz |
Clean up beforeinstall
Diffstat (limited to 'lib/libmd/Makefile')
-rw-r--r-- | lib/libmd/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/libmd/Makefile b/lib/libmd/Makefile index be53c88..30d4106 100644 --- a/lib/libmd/Makefile +++ b/lib/libmd/Makefile @@ -83,16 +83,13 @@ test: md2.ref md4.ref md5.ref beforedepend: md2hl.c md4hl.c md5hl.c beforeinstall: - -cd ${.CURDIR}; cmp -s md2.h ${DESTDIR}/usr/include/md2.h > \ - /dev/null 2>&1 || \ + -cd ${.CURDIR}; cmp -s md2.h ${DESTDIR}/usr/include/md2.h || \ install -c -o ${BINOWN} -g ${BINGRP} -m 444 md2.h \ ${DESTDIR}/usr/include - -cd ${.CURDIR}; cmp -s md4.h ${DESTDIR}/usr/include/md4.h > \ - /dev/null 2>&1 || \ + -cd ${.CURDIR}; cmp -s md4.h ${DESTDIR}/usr/include/md4.h || \ install -c -o ${BINOWN} -g ${BINGRP} -m 444 md4.h \ ${DESTDIR}/usr/include - -cd ${.CURDIR}; cmp -s md5.h ${DESTDIR}/usr/include/md5.h > \ - /dev/null 2>&1 || \ + -cd ${.CURDIR}; cmp -s md5.h ${DESTDIR}/usr/include/md5.h || \ install -c -o ${BINOWN} -g ${BINGRP} -m 444 md5.h \ ${DESTDIR}/usr/include |