diff options
author | obrien <obrien@FreeBSD.org> | 2006-07-22 14:00:31 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2006-07-22 14:00:31 +0000 |
commit | ff2ff54f218026085798921c9a890e3e80315568 (patch) | |
tree | 241219a27a9b02eccb73497a43e8a49bbfd1e35b /usr.bin/make | |
parent | 361a0884e44dc35568683a8411eaf635a4788d73 (diff) | |
download | FreeBSD-src-ff2ff54f218026085798921c9a890e3e80315568.zip FreeBSD-src-ff2ff54f218026085798921c9a890e3e80315568.tar.gz |
Tell when a .include is processed with '-dd'.
Diffstat (limited to 'usr.bin/make')
-rw-r--r-- | usr.bin/make/parse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c index ae9db06..c9c1dbf 100644 --- a/usr.bin/make/parse.c +++ b/usr.bin/make/parse.c @@ -2195,6 +2195,7 @@ xparse_include(char *file, int sinclude) * place. */ ParsePushInput(fullname, NULL, NULL, 0); + DEBUGF(DIR, (".include %s\n", fullname)); } static void |