diff options
author | Austin Foxley <austinf@cetoncorp.com> | 2009-11-09 13:17:04 -0800 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-11-09 13:17:04 -0800 |
commit | 1de3bed755666eb3d0b3529e33c9a8b8445293ff (patch) | |
tree | 7db38458a09d99d0a9245d75e3084b9fd826fb32 | |
parent | 7345b706ad95539779218fd198da8e8e76f08838 (diff) |
Rules.mak fix typo (qstrup -> qstrip)
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
-rw-r--r-- | Rules.mak | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -95,7 +95,7 @@ export ARCH # Make certain these contain a final "/", but no "//"s. TARGET_SUBARCH:=$(call qstrip,$(shell grep -s '^TARGET_SUBARCH' $(top_builddir)/.config | $(SED) -e 's/^TARGET_SUBARCH=//')) TARGET_SUBARCH:=$(call qstrip,$(TARGET_SUBARCH)) -RUNTIME_PREFIX:=$(strip $(subst //,/, $(subst ,/, $(call qstrup,$(RUNTIME_PREFIX))))) +RUNTIME_PREFIX:=$(strip $(subst //,/, $(subst ,/, $(call qstrip,$(RUNTIME_PREFIX))))) DEVEL_PREFIX:=$(strip $(subst //,/, $(subst ,/, $(call qstrip,$(DEVEL_PREFIX))))) KERNEL_HEADERS:=$(strip $(subst //,/, $(subst ,/, $(call qstrip,$(KERNEL_HEADERS))))) export RUNTIME_PREFIX DEVEL_PREFIX KERNEL_HEADERS |