From: Rocky B. <roc...@gm...> - 2008-08-25 14:12:51
|
Thanks! Should be applied now. Also removed this target in the parent Makefile which a holdover from the time when we were building builtins there. I had to apply the patch by hand since cut-and pasting into a patch file didn't work. So please double check. On Mon, Aug 25, 2008 at 8:29 AM, Masatake YAMATO <ya...@re...> wrote: > Hi, > > The argument for rm in set0$(EXEEXT) target of builtin/Makefile > is wrong. Here is a patch for fixing it. > > 2008-08-25 Masatake YAMATO <ya...@re...> > > * builtin/Makefile.am: Give $@ to rm. > > Index: Makefile.am > =================================================================== > RCS file: /cvsroot/bashdb/bash-3.1/builtin/Makefile.am,v > retrieving revision 1.4 > diff -c -r1.4 Makefile.am > *** Makefile.am 13 Jul 2008 21:20:30 -0000 1.4 > --- Makefile.am 25 Aug 2008 12:26:57 -0000 > *************** > *** 9,15 **** > readarray_LDFLAGS = -shared > > readarray$(EXEEXT): $(readarray_OBJECTS) $(readarray_DEPENDENCIES) > ! @rm -f readarray$(EXEEXT) > $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ \ > $(readarray_LDFLAGS) $(readarray_OBJECTS) $(readarray_LDADD) $(LIBS) > > --- 9,15 ---- > readarray_LDFLAGS = -shared > > readarray$(EXEEXT): $(readarray_OBJECTS) $(readarray_DEPENDENCIES) > ! @rm -f $@ > $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ \ > $(readarray_LDFLAGS) $(readarray_OBJECTS) $(readarray_LDADD) $(LIBS) > > *************** > *** 19,25 **** > set0_builtin = set0 > > set0$(EXEEXT): $(set0_OBJECTS) $(set0_DEPENDENCIES) > ! @rm -f readarray$(EXEEXT) > $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ \ > $(set0_LDFLAGS) $(set0_OBJECTS) $(set0_LDADD) $(LIBS) > > --- 19,25 ---- > set0_builtin = set0 > > set0$(EXEEXT): $(set0_OBJECTS) $(set0_DEPENDENCIES) > ! @rm -f $@ > $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ \ > $(set0_LDFLAGS) $(set0_OBJECTS) $(set0_LDADD) $(LIBS) > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Bashdb-devel mailing list > Bas...@li... > https://lists.sourceforge.net/lists/listinfo/bashdb-devel > |