Andreas Ericsson wrote: > The patch says it all really. It lets users specify their own linking > options and unclutters the build-output somewhat. > > index 5b0306d..f547d45 100644 > --- a/Makefile > +++ b/Makefile > @@ -360,7 +360,7 @@ git-cherry-pick: git-revert > $(CC) -o $*.o -c $(ALL_CFLAGS) $< > > git-%$X: %.o $(LIB_FILE) > - $(CC) $(ALL_CFLAGS) -o $@ $(filter %.o,$^) $(LIBS) > + $(CC) -o $@ $(filter %.o,$^) $(LIBS) $(LDFLAGS) > Typically $(LDFLAGS) comes before $(LIBS). This is not insignificant, since some people put library seach options into LDFLAGS. -hpa - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Sun Oct 30 03:25:27 2005
This archive was generated by hypermail 2.1.8 : 2005-10-30 03:25:33 EST