[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
getting carried with "strip" in string comparisons?
From: |
Robert P. J. Day |
Subject: |
getting carried with "strip" in string comparisons? |
Date: |
Sun, 9 Jan 2005 07:15:49 -0500 (EST) |
from the project that i inherited, the makefiles are saturated with
string comparisons of the form:
ifeq ($(strip $(VARNAME)),whatever)
rather than
ifeq ($(VARNAME),whatever)
i realize that this is just being robust and careful about leading or
trailing whitespace but, seriously, after a while, it gets just a bit
overwhelming to see dozens, if not hundreds, of string comparisons
written this way.
does everyone do it this way? that is, would this be considered a
best practice?
rday
- getting carried with "strip" in string comparisons?,
Robert P. J. Day <=