diff options
author | Bruce Momjian | 1998-10-15 16:17:33 +0000 |
---|---|---|
committer | Bruce Momjian | 1998-10-15 16:17:33 +0000 |
commit | e7663e34b84550a0b714b00841f7359deb29368f (patch) | |
tree | f7dd5d9644e108ef91df6350d7655eea06f9d83f | |
parent | 3f20878791b85210997780a6d55b1da3fea1f0c8 (diff) |
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
-rw-r--r-- | src/interfaces/ecpg/lib/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/lib/Makefile.in b/src/interfaces/ecpg/lib/Makefile.in index 690f7c21249..310a801332e 100644 --- a/src/interfaces/ecpg/lib/Makefile.in +++ b/src/interfaces/ecpg/lib/Makefile.in @@ -75,7 +75,7 @@ endif all: lib$(NAME).a $(shlib) $(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: rm -f *.o *.sho *.a core a.out *~ $(shlib) lib$(NAME)$(DLSUFFIX) |