diff options
author | Wolfgang Denk <wd@denx.de> | 2009-07-22 23:53:23 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-07-22 23:53:23 +0200 |
commit | 48677a1ef5f82adca49145a7baf11ece77f51945 (patch) | |
tree | 66f62851fef7c4c742a64b3441b081859aa6a4e4 /board/trab/Makefile | |
parent | caf72ff329759b4da71352ab098537c7698c0e9f (diff) |
Fix "ld: cannot find -lstubs" build error
Commit 1bc15386 moved the examples/ to examples/standalone but failed
to adapt the Makefiles that need to link against libstubs.a
Signed-off-by: Wolfgang Denk <wd@denx.de>
Cc: Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Diffstat (limited to 'board/trab/Makefile')
-rw-r--r-- | board/trab/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/trab/Makefile b/board/trab/Makefile index 30e5fbbb311..3a92c0d95f9 100644 --- a/board/trab/Makefile +++ b/board/trab/Makefile @@ -49,7 +49,7 @@ $(LIB): $(obj).depend $(OBJS) $(SOBJS) $(obj)trab_fkt.srec: $(OBJS_FKT) $(LIB) $(LD) -g -Ttext $(LOAD_ADDR) -o $(<:.o=) -e trab_fkt $^ $(LIB) \ - -L$(obj)../../examples -lstubs \ + -L$(obj)../../examples/standalone -lstubs \ -L$(obj)../../lib_generic -lgeneric \ $(obj)../../lib_arm/div0.o \ $(obj)../../lib_arm/_*.o |