From 1941f3990b0018414c972e4c2a2629f53b8a2954 Mon Sep 17 00:00:00 2001 From: proski Date: Mon, 5 May 2008 12:05:10 +0000 Subject: [PATCH] Add $(obj)/ to the dependencies of ath_hal.o Otherwise, $(TARGET).hal.o is not built for Linux 2.4 kernels. The rule for ath_hal.o is for Linux 2.4 only and should not affect Linux 2.6 builds. git-svn-id: http://madwifi-project.org/svn/madwifi/trunk@3604 0192ed92-7a03-0410-a25b-9323aeb14dbd --- ath_hal/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ath_hal/Makefile b/ath_hal/Makefile index 7600418..994af47 100644 --- a/ath_hal/Makefile +++ b/ath_hal/Makefile @@ -102,6 +102,6 @@ clean: rm -f .depend .version .*.o.flags .*.o.d rm -rf .tmp_versions -ath_hal.o: $(ath_hal-objs) +ath_hal.o: $(addprefix $(obj)/,$(ath_hal-objs)) $(LD) $(LDFLAGS) -o ath_hal.$(KMODSUF) -r $(ath_hal-objs) -- 2.35.1