Removed the definition of the make variable SHAREDIR. It was clashing

with the definition in bsd.own.mk, causing "make world" to fall over.
This commit is contained in:
John Polstra 1996-04-02 22:26:18 +00:00
parent c7e39c5cee
commit ffac7b875e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=15008

View File

@ -3,16 +3,15 @@
PROG= calendar
SRCS= calendar.c io.c day.c ostern.c
INTER= de_DE.ISO_8859-1 hr_HR.ISO_8859-2
SHAREDIR= /usr/share/calendar
TEXTMODE?= 444
beforeinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${TEXTMODE} \
${.CURDIR}/calendars/calendar.* ${DESTDIR}${SHAREDIR}
${.CURDIR}/calendars/calendar.* ${DESTDIR}${SHAREDIR}/calendar
.for lang in ${INTER}
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${TEXTMODE} \
${.CURDIR}/calendars/${lang}/calendar.* \
${DESTDIR}${SHAREDIR}/${lang};
${DESTDIR}${SHAREDIR}/calendar/${lang};
.endfor
.include <bsd.prog.mk>