diff options
author | emaste <emaste@FreeBSD.org> | 2014-06-02 18:30:57 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2014-06-02 18:30:57 +0000 |
commit | 75dbd6b0129abdbf22953c3411a9df8c43fa4dab (patch) | |
tree | 50b1e9889f25b25158e92c9f86f6734097a69179 /usr.bin/calendar | |
parent | f9f96d86338b7db42706746fcf6220bce60589dd (diff) | |
download | FreeBSD-src-75dbd6b0129abdbf22953c3411a9df8c43fa4dab.zip FreeBSD-src-75dbd6b0129abdbf22953c3411a9df8c43fa4dab.tar.gz |
Remove extraneous "mkdir -p"
The directory hierarchy is created by an mtree file (BSD.usr.dist,
in the case of calendar(1)). An explicit "mkdir -p" in a program's
Makefile is redundant, and can mask a missing mtree entry.
Diffstat (limited to 'usr.bin/calendar')
-rw-r--r-- | usr.bin/calendar/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/usr.bin/calendar/Makefile b/usr.bin/calendar/Makefile index 32a107a..ef1d7f2 100644 --- a/usr.bin/calendar/Makefile +++ b/usr.bin/calendar/Makefile @@ -19,7 +19,6 @@ beforeinstall: ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${TEXTMODE} \ ${.CURDIR}/calendars/calendar.* ${DESTDIR}${SHAREDIR}/calendar .for lang in ${INTER} - mkdir -p ${DESTDIR}${SHAREDIR}/calendar/${lang} ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${TEXTMODE} \ ${.CURDIR}/calendars/${lang}/calendar.* \ ${DESTDIR}${SHAREDIR}/calendar/${lang} |