diff options
| author | Dimitri Stolnikov <horiz0n@gmx.net> | 2012-09-08 16:37:56 +0200 |
|---|---|---|
| committer | Dimitri Stolnikov <horiz0n@gmx.net> | 2012-09-08 16:37:56 +0200 |
| commit | 0c7ba8e03e55622169175cbba4045526e29323d8 (patch) | |
| tree | 69aa9626b6e839d7ee89d804c7aa318a661fee71 | |
| parent | 5a26bd51e77f54160854d668c590a2d1d53265a5 (diff) | |
don't install udev rules by default, as it may pollute the system
For cmake call with -DINSTALL_UDEV_RULES=ON for the rules to be
installed during the default install/uninstall stages.
For autotools call "make install-udev-rules" or "make uninstall-udev-
The rules file will be installed to "/etc/udev/rules.d".
| -rw-r--r-- | CMakeLists.txt | 2 | ||||
| -rw-r--r-- | Makefile.am | 11 |
2 files changed, 8 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0112754..f3ef31e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -90,7 +90,7 @@ add_custom_target(uninstall ######################################################################## # Install udev rules ######################################################################## -option(INSTALL_UDEV_RULES "Install udev rules for RTL-SDR" ON) +option(INSTALL_UDEV_RULES "Install udev rules for RTL-SDR" OFF) if (INSTALL_UDEV_RULES) install ( FILES rtl-sdr.rules diff --git a/Makefile.am b/Makefile.am index ec705c8..2ffa532 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,16 +7,19 @@ SUBDIRS = include src pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = librtlsdr.pc -udevrulesdir=/etc/udev/rules.d -udevrules_DATA = rtl-sdr.rules - BUILT_SOURCES = $(top_srcdir)/.version $(top_srcdir)/.version: echo $(VERSION) > $@-t && mv $@-t $@ dist-hook: echo $(VERSION) > $(distdir)/.tarball-version -EXTRA_DIST = git-version-gen $(udevrules_DATA) +install-udev-rules: + $(INSTALL_DATA) rtl-sdr.rules /etc/udev/rules.d + +uninstall-udev-rules: + rm -rf /etc/udev/rules.d/rtl-sdr.rules + +EXTRA_DIST = git-version-gen if HAVE_DOXYGEN |
