1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

- no-op/style: make use of an assigned variable

PR:		ports/152090
Submitted by:	Eitan Adler <lists@eitanadler.com>
This commit is contained in:
Pav Lucistnik 2010-11-17 21:06:43 +00:00
parent a7f8afdf79
commit 627be0e01c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=264713

View File

@ -6035,7 +6035,7 @@ config:
elif [ ! -z "$${withoutval}" ]; then \
val=off; \
else \
val=$$3; \
val=$${defaultval}; \
fi; \
DEFOPTIONS="$${DEFOPTIONS} $$1 \"$$2\" $${val}"; \
shift 3; \
@ -6140,7 +6140,7 @@ showconfig:
elif [ ! -z "$${withoutval}" ]; then \
val=off; \
else \
val="$$3 (default)"; \
val="$${defaultval} (default)"; \
fi; \
${ECHO_MSG} " $$1=$${val} \"$$2\""; \
shift 3; \