Commit a824aaf0fa2f81f7c9babe26d4f8d19475236271
Exists in
master
Merge branch 'master' of http://softwarepublico.gov.br/gitlab/pw3270/pw3270-rexx
Showing
2 changed files
with
4 additions
and
5 deletions
Show diff stats
src/extension/Makefile.in
... | ... | @@ -137,7 +137,7 @@ $(BINRLS)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@: \ |
137 | 137 | |
138 | 138 | @echo $(basename $@) ... |
139 | 139 | @$(MKDIR) `dirname $@` |
140 | - @$(LD) -shared -Wl,-soname,$(LIBNAME) $(LDFLAGS) -o $@ $^ $(LIBS) | |
140 | + @$(LD) -shared -Wl,-soname,$(notdir $@) $(LDFLAGS) -o $@ $^ $(LIBS) | |
141 | 141 | |
142 | 142 | #---[ Debug Targets ]-------------------------------------------------------------------- |
143 | 143 | |
... | ... | @@ -163,6 +163,5 @@ $(BINDBG)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@: \ |
163 | 163 | |
164 | 164 | @echo $(basename $@) ... |
165 | 165 | @$(MKDIR) `dirname $@` |
166 | - @$(LD) -shared -Wl,-soname,$(LIBNAME) $(LDFLAGS) -o $@ $^ $(LIBS) | |
167 | - | |
166 | + @$(LD) -shared -Wl,-soname,$(notdir $@) $(LDFLAGS) -o $@ $^ $(LIBS) | |
168 | 167 | ... | ... |
src/plugin/Makefile.in
... | ... | @@ -117,7 +117,7 @@ $(BINRLS)/$(LIBNAME): \ |
117 | 117 | |
118 | 118 | @echo $(basename $@) ... |
119 | 119 | @$(MKDIR) `dirname $@` |
120 | - @$(LD) -shared -Wl,-soname,$(LIBNAME) $(LDFLAGS) -o $@ $^ $(LIBS) | |
120 | + @$(LD) -shared -Wl,-soname,$(notdir $@) -L$(BINRLS) $(LDFLAGS) -o $@ $^ -lrx3270 -lpw3270 $(LIBS) | |
121 | 121 | |
122 | 122 | #---[ Debug Targets ]-------------------------------------------------------------------- |
123 | 123 | |
... | ... | @@ -129,6 +129,6 @@ $(BINDBG)/$(LIBNAME): \ |
129 | 129 | |
130 | 130 | @echo $(basename $@) ... |
131 | 131 | @$(MKDIR) `dirname $@` |
132 | - @$(LD) -shared -Wl,-soname,$(LIBNAME) -L$(BINDBG) $(LDFLAGS) -o $@ $^ -lrx3270 $(LIBS) | |
132 | + @$(LD) -shared -Wl,-soname,$(notdir $@) -L$(BINDBG) $(LDFLAGS) -o $@ $^ -lrx3270 -lpw3270 $(LIBS) | |
133 | 133 | |
134 | 134 | ... | ... |