FIT_NOPROLOGUE is never set anywhere.

This commit is contained in:
uebayasi 2014-10-09 19:24:36 +00:00
parent eb981efe66
commit 9a04781594
2 changed files with 3 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: defs.h,v 1.51 2014/10/09 19:20:56 uebayasi Exp $ */
/* $NetBSD: defs.h,v 1.52 2014/10/09 19:24:36 uebayasi Exp $ */
/*
* Copyright (c) 1992, 1993
@ -324,7 +324,6 @@ struct filetype
TAILQ_ENTRY(files) fit_anext; /* next file in attr */
};
/* Anything less than 0x10 is sub-type specific */
#define FIT_NOPROLOGUE 0x10 /* Don't prepend $S/ */
#define FIT_FORCESELECT 0x20 /* Always include this file */
/*

View File

@ -1,4 +1,4 @@
/* $NetBSD: mkmakefile.c,v 1.22 2014/10/09 19:22:31 uebayasi Exp $ */
/* $NetBSD: mkmakefile.c,v 1.23 2014/10/09 19:24:36 uebayasi Exp $ */
/*
* Copyright (c) 1992, 1993
@ -269,7 +269,7 @@ srcpath(struct files *fi)
static const char *
filetype_prologue(struct filetype *fit)
{
if (fit->fit_flags & FIT_NOPROLOGUE || *fit->fit_path == '/')
if (*fit->fit_path == '/')
return ("");
else
return ("$S/");