Compute more of INDEX within make, without external test calls.

Re-indent rules correctly. Only the make tests are indented, the rule itself
still starts after one tab.
This commit is contained in:
espie 2000-02-21 23:53:52 +00:00
parent 6edf694a82
commit 4c723581ce

View File

@ -1,6 +1,6 @@
#-*- mode: Fundamental; tab-width: 4; -*-
# ex:ts=4 sw=4 filetype=make:
FULL_REVISION=$$OpenBSD: bsd.port.mk,v 1.205 2000/02/21 22:09:58 turan Exp $$
FULL_REVISION=$$OpenBSD: bsd.port.mk,v 1.206 2000/02/21 23:53:52 espie Exp $$
# $FreeBSD: bsd.port.mk,v 1.264 1996/12/25 02:27:44 imp Exp $
# $NetBSD: bsd.port.mk,v 1.62 1998/04/09 12:47:02 hubertf Exp $
#
@ -1972,45 +1972,45 @@ describe:
fi
. if defined(PERMIT_PACKAGE_CDROM)
@if [ ${PERMIT_PACKAGE_CDROM:L} == "yes" ]; then \
echo -n "y|"; \
else \
echo -n "n|"; \
fi
. if ${PERMIT_PACKAGE_CDROM:L} == "yes"
@echo -n "y|"
. else
@echo -n "n|"
. endif
. else
@echo -n "|"
@echo -n "|"
. endif
. if defined(PERMIT_PACKAGE_FTP)
@if [ ${PERMIT_PACKAGE_FTP:L} == "yes" ]; then \
echo -n "y|"; \
else \
echo -n "n|"; \
fi
. if ${PERMIT_PACKAGE_FTP:L} == "yes"
@echo -n "y|"
. else
@echo -n "n|"
. endif
. else
@echo -n "|"
. endif
. if defined(PERMIT_DISTFILES_CDROM)
. if ${PERMIT_DISTFILES_CDROM:L} == "yes"
@echo -n "y|"
. else
@echo -n "n|"
. endif
. else
@echo -n "|"
. endif
. if defined(PERMIT_DISTFILES_CDROM)
@if [ ${PERMIT_DISTFILES_CDROM:L} == "yes" ]; then \
echo -n "y|"; \
else \
echo -n "n|"; \
fi
. if ${PERMIT_DISTFILES_FTP:L} == "yes"
@echo -n "y|"
. else
@echo -n "n|"
. endif
. else
@echo -n "|"
. endif
. if defined(PERMIT_DISTFILES_CDROM)
@if [ ${PERMIT_DISTFILES_FTP:L} == "yes" ]; then \
echo -n "y|"; \
else \
echo -n "n|"; \
fi
. else
@echo -n "|"
@echo -n "|"
. endif
@echo "${LICENSE_TYPE}"