Commit f4e347df62cbb3cb10f191f02207835d7c8be18d

Authored by Perry Werneck
1 parent ee65b528
Exists in master and in 1 other branch develop

Fixing build/install on separated folder.

Showing 1 changed file with 6 additions and 6 deletions   Show diff stats
@@ -406,7 +406,7 @@ install-conf: @@ -406,7 +406,7 @@ install-conf:
406 $(DESTDIR)$(datarootdir)/$(PRODUCT_NAME)/remap 406 $(DESTDIR)$(datarootdir)/$(PRODUCT_NAME)/remap
407 407
408 @$(INSTALL_DATA) \ 408 @$(INSTALL_DATA) \
409 - remap/*.xml \ 409 + $(srcdir)/remap/*.xml \
410 $(DESTDIR)$(datarootdir)/$(PRODUCT_NAME)/remap 410 $(DESTDIR)$(datarootdir)/$(PRODUCT_NAME)/remap
411 411
412 # Install default configs 412 # Install default configs
@@ -414,7 +414,7 @@ install-conf: @@ -414,7 +414,7 @@ install-conf:
414 $(DESTDIR)$(datarootdir)/$(PRODUCT_NAME) 414 $(DESTDIR)$(datarootdir)/$(PRODUCT_NAME)
415 415
416 @$(INSTALL_DATA) \ 416 @$(INSTALL_DATA) \
417 - conf/colors.conf \ 417 + $(srcdir)/conf/colors.conf \
418 $(DESTDIR)$(datarootdir)/$(PRODUCT_NAME)/colors.conf 418 $(DESTDIR)$(datarootdir)/$(PRODUCT_NAME)/colors.conf
419 419
420 install-dev: \ 420 install-dev: \
@@ -424,11 +424,11 @@ install-dev: \ @@ -424,11 +424,11 @@ install-dev: \
424 @mkdir -p $(DESTDIR)$(includedir)/v3270 424 @mkdir -p $(DESTDIR)$(includedir)/v3270
425 425
426 @$(INSTALL_DATA) \ 426 @$(INSTALL_DATA) \
427 - src/include/v3270/*.h \ 427 + $(srcdir)/src/include/v3270/*.h \
428 $(DESTDIR)$(includedir)/v3270 428 $(DESTDIR)$(includedir)/v3270
429 429
430 @$(INSTALL_DATA) \ 430 @$(INSTALL_DATA) \
431 - src/include/v3270.h \ 431 + $(srcdir)/src/include/v3270.h \
432 $(DESTDIR)$(includedir)/v3270.h 432 $(DESTDIR)$(includedir)/v3270.h
433 433
434 # Install PKG-CONFIG files 434 # Install PKG-CONFIG files
@@ -490,11 +490,11 @@ install-glade: @@ -490,11 +490,11 @@ install-glade:
490 $(DESTDIR)$(datarootdir)/glade/catalogs/v3270.xml 490 $(DESTDIR)$(datarootdir)/glade/catalogs/v3270.xml
491 491
492 @$(INSTALL_DATA) \ 492 @$(INSTALL_DATA) \
493 - branding/icon-16x16.png \ 493 + $(srcdir)/branding/icon-16x16.png \
494 $(DESTDIR)$(datarootdir)/glade/pixmaps/hicolor/16x16/actions/widget-v3270-terminal.png 494 $(DESTDIR)$(datarootdir)/glade/pixmaps/hicolor/16x16/actions/widget-v3270-terminal.png
495 495
496 @$(INSTALL_DATA) \ 496 @$(INSTALL_DATA) \
497 - branding/icon-22x22.png \ 497 + $(srcdir)/branding/icon-22x22.png \
498 $(DESTDIR)$(datarootdir)/glade/pixmaps/hicolor/22x22/actions/widget-v3270-terminal.png 498 $(DESTDIR)$(datarootdir)/glade/pixmaps/hicolor/22x22/actions/widget-v3270-terminal.png
499 499
500 #---[ Misc Targets ]--------------------------------------------------------------------- 500 #---[ Misc Targets ]---------------------------------------------------------------------