=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/which/Makefile,v retrieving revision 1.6 retrieving revision 1.7 diff -c -r1.6 -r1.7 *** src/usr.bin/which/Makefile 2013/04/10 02:57:20 1.6 --- src/usr.bin/which/Makefile 2013/04/13 19:31:58 1.7 *************** *** 1,26 **** ! # $OpenBSD: Makefile,v 1.6 2013/04/10 02:57:20 guenther Exp $ - whereis_MAN = ${.OBJDIR}/whereis.1 - man_depends = ${.OBJDIR}/whereis.d - PROG= which ! MAN= which.1 ${whereis_MAN} LINKS= ${BINDIR}/which ${BINDIR}/whereis ! ${whereis_MAN}: ${.CURDIR}/whereis.1 /usr/include/paths.h stdpath=`printf '#include \n_PATH_STDPATH\n' | \ ! ${CPP} ${CPPFLAGS} -MD -MT '$${.OBJDIR}/whereis.1' \ ! -MF ${man_depends} - | \ ! sed -n 's/^[ ]*"\(.*\)".*/\1/p'` ; \ ! sed "s!_PATH_STDPATH!$${stdpath}!" < ${.CURDIR}/whereis.1 >$@ ! CLEANFILES = ${whereis_MAN} ! cleandir: cleanlocaldepend ! cleanlocaldepend: ! rm -f ${man_depends} ! ! .if exists(${man_depends}) ! . include "${man_depends}" ! .endif .include --- 1,18 ---- ! # $OpenBSD: Makefile,v 1.7 2013/04/13 19:31:58 guenther Exp $ PROG= which ! MAN= which.1 whereis.1 LINKS= ${BINDIR}/which ${BINDIR}/whereis ! check_path_in_man: stdpath=`printf '#include \n_PATH_STDPATH\n' | \ ! ${CPP} ${CPPFLAGS} - | \ ! sed -n 's/^[ ]*"\(.*\)".*/.Pa \1 ./p'` ; \ ! fgrep -xq "$$stdpath" ${.CURDIR}/whereis.1 && { touch $@; exit 0; }; \ ! echo "Update the expansion of _PATH_STDPATH in ${.CURDIR}/whereis.1"; \ ! exit 1 ! all: check_path_in_man ! CLEANFILES = check_path_in_man .include