Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit e7663e3

Browse files
committed
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
1 parent 3f20878 commit e7663e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interfaces/ecpg/lib/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ endif
7575
all: lib$(NAME).a $(shlib)
7676

7777
$(shlib): ecpglib.sho.o typename.sho.o
78-
$(LD) $(LDFLAGS_SL) -o $@ ecpglib.sho typename.sho.o
78+
$(LD) $(LDFLAGS_SL) -o $@ ecpglib.sho.o typename.sho.o
7979

8080
clean:
8181
rm -f *.o *.sho *.a core a.out *~ $(shlib) lib$(NAME)$(DLSUFFIX)

0 commit comments

Comments
 (0)