1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-29 07:24:13 +01:00

Add option to install udev rules file on generic linux.

This commit is contained in:
Roy Bekken 2015-07-25 20:56:55 +02:00
parent 1461447cfa
commit 4c3d71d0a7

View File

@ -81,10 +81,13 @@ endif # Debian based distro?
# Install OpenPilot
#
##############################
prefix := /usr/local
bindir := $(prefix)/bin
libdir := $(prefix)/lib
datadir := $(prefix)/share
enable-udev-rules ?= no
prefix := /usr/local
bindir := $(prefix)/bin
libdir := $(prefix)/lib
datadir := $(prefix)/share
sysconfdir := $(prefix)/etc
INSTALL = cp -a --no-preserve=ownership
LN = ln
@ -106,4 +109,7 @@ install:
$(V1) $(INSTALL) -T $(ROOT_DIR)/package/linux/openpilot.png $(DESTDIR)$(datadir)/pixmaps/$(ORG_SMALL_NAME).png
ifneq ($(enable-udev-rules), no)
$(V1) $(MKDIR) -p $(DESTDIR)$(sysconfdir)/udev/rules.d
$(V1) $(INSTALL) -T $(ROOT_DIR)/package/linux/45-uav.rules $(DESTDIR)$(sysconfdir)/udev/rules.d/45-$(ORG_SMALL_NAME).rules
endif