diff options
author | bde <bde@FreeBSD.org> | 1997-03-16 17:25:53 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-03-16 17:25:53 +0000 |
commit | 1e5ed9b6e80bc8518672cdc853e552d20eceeb9d (patch) | |
tree | ee2ad272cf797ae4dd2dedb14a75dd3b231831db | |
parent | 0e8a1407e4ded2158bde58c26f5a6caf2184b499 (diff) | |
download | FreeBSD-src-1e5ed9b6e80bc8518672cdc853e552d20eceeb9d.zip FreeBSD-src-1e5ed9b6e80bc8518672cdc853e552d20eceeb9d.tar.gz |
Fixed broken line continuation in the previous revision. Config apparently
has buggy backslash-newline handling. Avoid it by using whitespace before
backslash-newline.
-rw-r--r-- | sys/conf/files.i386 | 4 | ||||
-rw-r--r-- | sys/i386/conf/files.i386 | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/conf/files.i386 b/sys/conf/files.i386 index a51de94..76c4d17 100644 --- a/sys/conf/files.i386 +++ b/sys/conf/files.i386 @@ -1,11 +1,11 @@ # This file tells config what files go into building a kernel, # files marked standard are always included. # -# $Id: files.i386,v 1.154 1997/03/10 17:55:49 markm Exp $ +# $Id: files.i386,v 1.155 1997/03/16 07:09:01 gibbs Exp $ # aic7xxx_asm optional ahc device-driver \ dependency "$S/dev/aic7xxx/*.[chyl]" \ - compile-with "cd $S/dev/aic7xxx; make BINDIR=${.CURDIR} all install"\ + compile-with "cd $S/dev/aic7xxx; make BINDIR=${.CURDIR} all install" \ no-obj no-implicit-rule \ clean "aic7xxx_asm" # diff --git a/sys/i386/conf/files.i386 b/sys/i386/conf/files.i386 index a51de94..76c4d17 100644 --- a/sys/i386/conf/files.i386 +++ b/sys/i386/conf/files.i386 @@ -1,11 +1,11 @@ # This file tells config what files go into building a kernel, # files marked standard are always included. # -# $Id: files.i386,v 1.154 1997/03/10 17:55:49 markm Exp $ +# $Id: files.i386,v 1.155 1997/03/16 07:09:01 gibbs Exp $ # aic7xxx_asm optional ahc device-driver \ dependency "$S/dev/aic7xxx/*.[chyl]" \ - compile-with "cd $S/dev/aic7xxx; make BINDIR=${.CURDIR} all install"\ + compile-with "cd $S/dev/aic7xxx; make BINDIR=${.CURDIR} all install" \ no-obj no-implicit-rule \ clean "aic7xxx_asm" # |