Commit e7663e34 authored by Bruce Momjian's avatar Bruce Momjian

LAtest cvs has a little bug in src/interfaces/ecpg/lib/Makefile.in

        $(LD) $(LDFLAGS_SL) -o $@ ecpglib.sho typename.sho.o

must be
        $(LD) $(LDFLAGS_SL) -o $@ ecpglib.sho.o typename.sho.o
                                             ^^

        Regards,

        Oleg
parent 3f208787
...@@ -75,7 +75,7 @@ endif ...@@ -75,7 +75,7 @@ endif
all: lib$(NAME).a $(shlib) all: lib$(NAME).a $(shlib)
$(shlib): ecpglib.sho.o typename.sho.o $(shlib): ecpglib.sho.o typename.sho.o
$(LD) $(LDFLAGS_SL) -o $@ ecpglib.sho typename.sho.o $(LD) $(LDFLAGS_SL) -o $@ ecpglib.sho.o typename.sho.o
clean: clean:
rm -f *.o *.sho *.a core a.out *~ $(shlib) lib$(NAME)$(DLSUFFIX) rm -f *.o *.sho *.a core a.out *~ $(shlib) lib$(NAME)$(DLSUFFIX)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment