Commit 1c05e71333b67c01e0c4d94631568096445f87ae
1 parent
71b95f07
Exists in
master
and in
3 other branches
Fixingo linux packaging.
Showing
1 changed file
with
6 additions
and
7 deletions
Show diff stats
src/lib3270/Makefile.in
... | ... | @@ -232,18 +232,17 @@ install-shared: \ |
232 | 232 | # Install library |
233 | 233 | @mkdir -p $(DESTDIR)$(libdir) |
234 | 234 | |
235 | - @$(INSTALL_PROGRAM) \ | |
235 | + $(INSTALL_PROGRAM) \ | |
236 | 236 | $(BINRLS)/$(LIBNAME)@DLLEXT@.@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@ \ |
237 | - $(DESTDIR)$(libdir) | |
237 | + $(DESTDIR)/$(libdir) | |
238 | 238 | |
239 | - | |
240 | - @$(LN_S) \ | |
241 | - $(DESTDIR)$(libdir)/$(LIBNAME)@DLLEXT@.@PACKAGE_MAJOR_VERSION@ | |
239 | + $(LN_S) \ | |
242 | 240 | $(LIBNAME)@DLLEXT@.@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@ \ |
241 | + $(DESTDIR)/$(libdir)/$(LIBNAME)@DLLEXT@.@PACKAGE_MAJOR_VERSION@ \ | |
243 | 242 | |
244 | - @$(LN_S) \ | |
243 | + $(LN_S) \ | |
245 | 244 | $(LIBNAME)@DLLEXT@.@PACKAGE_MAJOR_VERSION@ \ |
246 | - $(DESTDIR)$(libdir)/$(LIBNAME)@DLLEXT@ | |
245 | + $(DESTDIR)/$(libdir)/$(LIBNAME)@DLLEXT@ | |
247 | 246 | |
248 | 247 | install-static: \ |
249 | 248 | $(BINRLS)/static/$(LIBNAME).a | ... | ... |