From: borutr Date: Sun, 22 Feb 2009 17:41:07 +0000 (+0000) Subject: * device/lib/Makefile.in: fixed parenthesis error X-Git-Url: https://git.gag.com/?p=fw%2Fsdcc;a=commitdiff_plain;h=f980a0d1a6e863eebf11d3562634233b3f61b4bd * device/lib/Makefile.in: fixed parenthesis error git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@5384 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index bc98ca39..70d9610d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-02-22 Borut Razem + + * device/lib/Makefile.in: fixed parenthesis error + 2009-02-18 Maarten Brock * device/include/mcs51/at89c51ed2.h: fixed bug #2071949 bitmask RBCK wrong diff --git a/device/lib/Makefile.in b/device/lib/Makefile.in index 8bae9e18..5fc4f479 100644 --- a/device/lib/Makefile.in +++ b/device/lib/Makefile.in @@ -152,7 +152,7 @@ LIB_FILES = $(PORTDIR)/libfloat.lib $(PORTDIR)/libint.lib $(PORTDIR)/liblong.lib else ifeq ($(LIB_TYPE), RANLIB) LIB_FILES = $(PORTDIR)/libfloat.lib $(PORTDIR)/libint.lib $(PORTDIR)/liblong.lib $(PORTDIR)/libsdcc.lib else -LIB_FILES = $($(OBJECTS_FLOAT) $(OBJECTS_INT) $(OBJECTS_LONG) $(OBJECTS_SDCC) $(PORTDIR)/libfloat.lib $(PORTDIR)/libint.lib $(PORTDIR)/liblong.lib $(PORTDIR)/libsdcc.lib +LIB_FILES = $(OBJECTS_FLOAT) $(OBJECTS_INT) $(OBJECTS_LONG) $(OBJECTS_SDCC) $(PORTDIR)/libfloat.lib $(PORTDIR)/libint.lib $(PORTDIR)/liblong.lib $(PORTDIR)/libsdcc.lib endif OEXT = .rel