diff options
| author | cgd <cgd@NetBSD.org> | 1996-10-07 05:45:28 +0000 |
|---|---|---|
| committer | cgd <cgd@NetBSD.org> | 1996-10-07 05:45:28 +0000 |
| commit | 17463d52f7e830d89f7db8454ced27e67a6853b0 (patch) | |
| tree | a6e00cd80b691f7d95d3f34b93eb299cdd3c64e6 /gnu | |
| parent | 24d2e8ec5fd4285d57fb31afa72259956c4dacdc (diff) | |
kill - in front of the 'for' loop which installed files. It was causing
the make to not fail even if the installations failed, which is wrong.
If the installations fail (e.g. because the target directory does not
exist), the whole install should fail, so that the user knows to
create the appropriate directories.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/usr.bin/groff/devices/Makefile.dev | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/groff/devices/Makefile.dev b/gnu/usr.bin/groff/devices/Makefile.dev index 236cbf81252..a278a169e2c 100644 --- a/gnu/usr.bin/groff/devices/Makefile.dev +++ b/gnu/usr.bin/groff/devices/Makefile.dev @@ -1,5 +1,5 @@ # from: @(#)Makefile.dev 6.2 (Berkeley) 3/16/91 -# $Id: Makefile.dev,v 1.13 1994/02/10 02:18:06 cgd Exp $ +# $Id: Makefile.dev,v 1.14 1996/10/07 05:45:28 cgd Exp $ # Client Makefiles define DEVICE and FONTFILES and provide rules for # individual font files @@ -28,7 +28,7 @@ COPY= -c .if !target(install) install: - -for f in $(FONTFILES); do \ + for f in $(FONTFILES); do \ install ${COPY} -o $(FONTOWN) -g $(FONTGRP) -m $(FONTMODE) $$f \ $(DEVICEDIR)/$$f; \ done |
