This is the mail archive of the newlib@sources.redhat.com mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

librdpmon.a and librdimon.a are empty [PATCH]


There's a typo in libgloss/arm/Makefile.in that causes librdpmon.a and
librdimon.a to be empty.

Cheers,
Shaun

2005-02-26  Shaun Jackman  <sjackman@gmail.com>

	* libgloss/arm/Makefile.in (RDPMON_BSP): librdpmon.a was empty due to a
	typo. Fixed.
	(RDIMON_BSP): Ditto.

diff -ur newlib-1.13.0.orig/libgloss/arm/Makefile.in
newlib-1.13.0/libgloss/arm/Makefile.in
--- newlib-1.13.0.orig/libgloss/arm/Makefile.in 2004-06-28
15:42:19.000000000 -0700
+++ newlib-1.13.0/libgloss/arm/Makefile.in      2005-02-25
17:12:25.000000000 -0800
@@ -116,11 +116,11 @@
	$(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) -DARM_RDI_MONITOR -o $@ -c $<

$(RDPMON_BSP): $(RDPMON_OBJS)
-	${AR} ${ARFLAGS} $@ $(IDTOBJS)
+	${AR} ${ARFLAGS} $@ $^
	${RANLIB} $@

$(RDIMON_BSP): $(RDIMON_OBJS)
-	${AR} ${ARFLAGS} $@ $(IDTOBJS)
+	${AR} ${ARFLAGS} $@ $^
	${RANLIB} $@

clean mostlyclean:


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]