diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2015-11-25 19:44:43 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2015-11-25 19:44:43 +0000 |
commit | 52255645fb90fea4463237052ca49411638d381a (patch) | |
tree | e3f49e2ae9774752cf0d572a4d4dd49a8bf8f14c /lib/libmilter/Makefile | |
parent | b93094a6f0d2c9cf9f249b0cfa7df61a46c1da00 (diff) | |
download | FreeBSD-src-52255645fb90fea4463237052ca49411638d381a.zip FreeBSD-src-52255645fb90fea4463237052ca49411638d381a.tar.gz |
META MODE: Don't create .meta files when symlinking sources into the obj directory.
Tracking these leads to situations where meta mode will consider the
file to be out of date if /bin/sh or /bin/ln are newer than the source
file. There's no reason for meta mode to do this as make is already
handling the rebuild dependency fine.
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'lib/libmilter/Makefile')
-rw-r--r-- | lib/libmilter/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libmilter/Makefile b/lib/libmilter/Makefile index ca9838d..81172ec 100644 --- a/lib/libmilter/Makefile +++ b/lib/libmilter/Makefile @@ -29,7 +29,7 @@ CLEANFILES+=sm_os.h WARNS?= 0 -sm_os.h: - ln -sf ${SENDMAIL_DIR}/include/sm/os/sm_os_freebsd.h sm_os.h +sm_os.h: ${SENDMAIL_DIR}/include/sm/os/sm_os_freebsd.h .NOMETA + ln -sf ${.ALLSRC} ${.TARGET} .include <bsd.lib.mk> |