From f7f29172cb11fabf1d017ecdadaf32ea37eca4df Mon Sep 17 00:00:00 2001 From: Benjamin Dobell Date: Sun, 10 Mar 2013 02:32:16 +1100 Subject: Updated Linux build files and fixed a string formatting warning in Heimdall Frontend. --- heimdall/Makefile.am | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'heimdall/Makefile.am') diff --git a/heimdall/Makefile.am b/heimdall/Makefile.am index dcebb73..f1a659f 100644 --- a/heimdall/Makefile.am +++ b/heimdall/Makefile.am @@ -9,7 +9,6 @@ heimdall_SOURCES = source/Arguments.cpp \ source/ClosePcScreenAction.cpp \ source/DetectAction.cpp \ source/DownloadPitAction.cpp \ - source/DumpAction.cpp \ source/FlashAction.cpp \ source/HelpAction.cpp \ source/InfoAction.cpp \ @@ -31,7 +30,7 @@ install-data-hook: @echo "IMPORTANT - You must reboot your machine or execute the following as root:" if UDEVADM - @echo "udevadm control --reload_rules" + @echo "udevadm control --reload-rules" else @echo "service udev restart" endif -- cgit v1.1 From 3d6a35972b70f9295455755802849303eb900a65 Mon Sep 17 00:00:00 2001 From: Benjamin Dobell Date: Tue, 4 Jun 2013 22:49:48 +1000 Subject: Renamed udev rules file and explictly added /usr/include to the include search path for Heimdall Frontend on UNIX systems. --- heimdall/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'heimdall/Makefile.am') diff --git a/heimdall/Makefile.am b/heimdall/Makefile.am index f1a659f..6ed343c 100644 --- a/heimdall/Makefile.am +++ b/heimdall/Makefile.am @@ -22,8 +22,8 @@ heimdall_LDADD = $(DEPS_LIBS) $(STATIC_LIBS) if LINUXTARGET -udevrulesdir = /lib/udev/rules.d -udevrules_DATA = 60-heimdall-galaxy-s.rules +udevrulesdir = ${libdir}/udev/rules.d +udevrules_DATA = 60-heimdall.rules install-data-hook: @echo "" -- cgit v1.1 From e9311908a0920d082aff16b92bbb9c571bed4c27 Mon Sep 17 00:00:00 2001 From: Juan Orti Alcaine Date: Wed, 12 Jun 2013 09:35:26 +0200 Subject: Fix udev rules directory The udev rules always must be installed in /lib/udev/rules.d even when it is a 64 bits OS --- heimdall/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'heimdall/Makefile.am') diff --git a/heimdall/Makefile.am b/heimdall/Makefile.am index 6ed343c..398a705 100644 --- a/heimdall/Makefile.am +++ b/heimdall/Makefile.am @@ -22,7 +22,7 @@ heimdall_LDADD = $(DEPS_LIBS) $(STATIC_LIBS) if LINUXTARGET -udevrulesdir = ${libdir}/udev/rules.d +udevrulesdir = /lib/udev/rules.d udevrules_DATA = 60-heimdall.rules install-data-hook: -- cgit v1.1