Commit 457df5373052797871e4baae33dbc5671b5d3830
1 parent
21a47e09
Exists in
master
and in
1 other branch
Fixing "deb" builds.
Showing
1 changed file
with
8 additions
and
7 deletions
Show diff stats
Makefile.in
... | ... | @@ -29,7 +29,7 @@ |
29 | 29 | SONAME=@SONAME@ |
30 | 30 | LIBNAME=libv3270 |
31 | 31 | PRODUCT_NAME=@PRODUCT_NAME@ |
32 | -INSTALL_PACKAGES=@INSTALL_PACKAGES@ locale | |
32 | +INSTALL_PACKAGES=@INSTALL_PACKAGES@ | |
33 | 33 | |
34 | 34 | SOURCES= \ |
35 | 35 | $(wildcard src/terminal/*.c) \ |
... | ... | @@ -321,7 +321,8 @@ install: \ |
321 | 321 | |
322 | 322 | install-linux-lib: \ |
323 | 323 | $(BINRLS)/$(SONAME) \ |
324 | - install-conf | |
324 | + install-conf \ | |
325 | + install-locale | |
325 | 326 | |
326 | 327 | # Install library |
327 | 328 | @$(MKDIR) $(DESTDIR)$(libdir) |
... | ... | @@ -330,14 +331,11 @@ install-linux-lib: \ |
330 | 331 | $(BINRLS)/$(SONAME) \ |
331 | 332 | $(DESTDIR)$(libdir)/$(LIBNAME)@DLLEXT@.@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@ |
332 | 333 | |
333 | - @$(LN_S) \ | |
334 | - $(LIBNAME)@DLLEXT@.@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@ \ | |
335 | - $(DESTDIR)$(libdir)/$(LIBNAME)@DLLEXT@ | |
336 | - | |
337 | 334 | install-windows-lib: \ |
338 | 335 | $(BINRLS)/$(SONAME) \ |
339 | 336 | $(BINRLS)/$(LIBNAME).dll.a \ |
340 | - install-conf | |
337 | + install-conf \ | |
338 | + install-locale | |
341 | 339 | |
342 | 340 | @$(MKDIR) \ |
343 | 341 | $(DESTDIR)$(bindir) |
... | ... | @@ -410,6 +408,9 @@ install-dev: \ |
410 | 408 | @$(MKDIR) $(DESTDIR)$(datarootdir)/$(PRODUCT_NAME)/pot |
411 | 409 | @$(INSTALL_DATA) locale/$(LIBNAME).pot $(DESTDIR)$(datarootdir)/$(PRODUCT_NAME)/pot |
412 | 410 | |
411 | + @$(LN_S) \ | |
412 | + $(LIBNAME)@DLLEXT@.@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@ \ | |
413 | + $(DESTDIR)$(libdir)/$(LIBNAME)@DLLEXT@ | |
413 | 414 | |
414 | 415 | install-glade: |
415 | 416 | ... | ... |