Use LDOPTS instead of LDFLAGS to avoid an ld warning on Linux 2.4

The warning is
ld: warning: cannot find entry symbol stext; defaulting to 0000000000000000

LDFLAGS may have been a better choice when HAL was binary, but now
LDOPTS is the right thing for consistency with the makefiles in other
directories.


git-svn-id: http://madwifi-project.org/svn/madwifi/trunk@4104 0192ed92-7a03-0410-a25b-9323aeb14dbd
This commit is contained in:
proski 2010-01-11 14:52:01 +00:00
parent 4bbde45a51
commit da9812696d
1 changed files with 1 additions and 1 deletions

View File

@ -155,5 +155,5 @@ clean:
rm -rf .tmp_versions
ath_hal.o: $(addprefix $(obj)/,$(ath_hal-objs))
$(LD) $(LDFLAGS) -o ath_hal.$(KMODSUF) -r $(ath_hal-objs)
$(LD) $(LDOPTS) -o ath_hal.$(KMODSUF) -r $(ath_hal-objs)