diff options
| author | Jeff Johnson <jjohnson@codeaurora.org> | 2017-01-31 15:57:35 -0800 |
|---|---|---|
| committer | qcabuildsw <qcabuildsw@localhost> | 2017-02-22 23:42:02 -0800 |
| commit | 8c7c9456fdce7c43acded0a1136495099d39e960 (patch) | |
| tree | 4cdfdbb10bfa2b3849a6a099f9dedf5d358c903e | |
| parent | b294cebbaf3ff078a357f413159f50a0b890e9ec (diff) | |
qcacld-3.0: Fix Kbuild path for wma_ocb.o
When CONFIG_WLAN_FEATURE_DSRC is enabled the resulting build fails
because there is no rule to make wma_ocb.o. The issue is that there is
a typo in the rule, so fix the rule.
Change-Id: I1b724736fcac175b9bf83e4a98878e1333a54b57
CRs-Fixed: 2002874
| -rw-r--r-- | Kbuild | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -986,7 +986,7 @@ WMA_OBJS := $(WMA_SRC_DIR)/wma_main.o \ $(WMA_NDP_OBJS) ifeq ($(CONFIG_WLAN_FEATURE_DSRC), y) -WMA_OBJS+= $(WMA_DIR)/wma_ocb.o +WMA_OBJS+= $(WMA_SRC_DIR)/wma_ocb.o endif ifeq ($(CONFIG_MPC_UT_FRAMEWORK),y) WMA_OBJS += $(WMA_SRC_DIR)/wma_utils_ut.o |
