[project @ 2003-04-12 09:39:03 by panne]
authorpanne <unknown>
Sat, 12 Apr 2003 09:39:03 +0000 (09:39 +0000)
committerpanne <unknown>
Sat, 12 Apr 2003 09:39:03 +0000 (09:39 +0000)
Fixed the -print arg to a $(FIND) command, so as to be more compatible
with shells.  :-)

mk/target.mk

index 6f62c02..209f407 100644 (file)
@@ -304,7 +304,7 @@ SRC_HC_OPTS += -split-objs
 ifeq "$(ArSupportsInput)" ""
 define BUILD_LIB
 $(RM) $@ $@.tmp
-(echo $(STUBOBJS) $(C_OBJS); $(FIND) $(patsubst %.$(way_)o,%_split,$(HS_OBJS)) -name '*.$(way_)o') -print | xargs $(AR) $@
+(echo $(STUBOBJS) $(C_OBJS); $(FIND) $(patsubst %.$(way_)o,%_split,$(HS_OBJS)) -name '*.$(way_)o' -print) | xargs $(AR) $@
 $(RANLIB) $@
 endef
 else