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.
This commit is contained in:
Ed Maste 2014-06-02 18:30:57 +00:00
parent d22c735e03
commit ff2e520113
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=266976

View File

@ -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}