Add missing $(DESTDIR) to rm command so that this stops removing files

from my master system.

This makefile is a crock, and will soon be rewritten!
This commit is contained in:
Rodney W. Grimes 1995-04-17 19:10:20 +00:00
parent 8425684b90
commit aa556f48a9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=7909

View File

@ -23,7 +23,7 @@ afterinstall:
chmod 755 $(DESTDIR)$(TMACDIR)/mm
for f in $(FILES); do \
rm -f $(TMACDIR)/mm/$$f; \
rm -f $(DESTDIR)$(TMACDIR)/mm/$$f; \
install -c -o $(TMACOWN) -g $(TMACGRP) -m $(TMACMODE) \
$(.CURDIR)/mm/$$f $(DESTDIR)$(TMACDIR)/mm/$$f; \
done