diff options
author | wosch <wosch@FreeBSD.org> | 1996-08-17 22:27:08 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1996-08-17 22:27:08 +0000 |
commit | dfb9d51f1fa3983a90bb35d53cb7032bac50eed7 (patch) | |
tree | 4f2015370a9317d14c58aea6b35e379e210976a5 /usr.bin/file | |
parent | 56678549f3565e8824ce4dac32419c580ada8a1c (diff) | |
download | FreeBSD-src-dfb9d51f1fa3983a90bb35d53cb7032bac50eed7.zip FreeBSD-src-dfb9d51f1fa3983a90bb35d53cb7032bac50eed7.tar.gz |
make install should not install any file in /etc.
Diffstat (limited to 'usr.bin/file')
-rw-r--r-- | usr.bin/file/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/file/Makefile b/usr.bin/file/Makefile index d2cd561..efac409 100644 --- a/usr.bin/file/Makefile +++ b/usr.bin/file/Makefile @@ -1,6 +1,6 @@ # Makefile for file(1) cmd. # Copyright (c) Ian F. Darwin 86/09/01 - see LEGAL.NOTICE. -# @(#)$Id: Makefile,v 1.3 1995/05/30 06:29:57 rgrimes Exp $ +# @(#)$Id: Makefile,v 1.4 1995/07/25 00:36:03 bde Exp $ # # This software is not subject to any license of the American Telephone # and Telegraph Company or of the Regents of the University of California. @@ -50,7 +50,8 @@ all: file magic magic: $(MAGFILES) cat $(MAGFILES) > $(.TARGET) -afterinstall: +# called from /usr/src/etc/Makefile +etc-magic: ${INSTALL} -c -o $(MAGICOWN) -g $(MAGICGRP) -m $(MAGICMODE) magic \ $(DESTDIR)$(MAGIC) |