Fix make warning on Linux 2.4 introduced by the last commit

Don't use two targets, simply omit $(obj)/ if it evaluates to "./"


git-svn-id: http://madwifi-project.org/svn/madwifi/trunk@3837 0192ed92-7a03-0410-a25b-9323aeb14dbd
This commit is contained in:
proski 2008-08-01 02:51:19 +00:00
parent 20bd7616c4
commit 4a596a2c5b
1 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ endif
quiet_cmd_uudecode = UUDECODE $@
cmd_uudecode = $(obj)/uudecode -o $@ $<
$(HALBIN) $(obj)/$(HALBIN): $(HAL)/public/$(TARGET).hal.o.uu $(obj)/uudecode
$(filter-out ./,$(obj)/)$(HALBIN): $(HAL)/public/$(TARGET).hal.o.uu $(obj)/uudecode
ifdef LINUX24
$(cmd_uudecode)
else
@ -95,7 +95,7 @@ quiet_cmd_unmangle = UNMANGLE $@
cmd_unmangle = $(filter-out -O binary -S,$(OBJCOPY)) \
$$(cat $(TOP)/scripts/hal_unmangle.objcopy) $< $@
$(HALOBJ) $(obj)/$(HALOBJ): $(obj)/$(HALBIN)
$(filter-out ./,$(obj)/)$(HALOBJ): $(obj)/$(HALBIN)
ifdef LINUX24
$(cmd_unmangle)
else