Skip to content
Snippets Groups Projects
Commit cbe49f4b authored by Peter Hutterer's avatar Peter Hutterer
Browse files

install.sh: don't permanently remove the @@BINDIR@@ marker on install


Previously running install.sh replaced the @@BINDIR@@ marker with the
selected prefix. Running it again with a different prefix missed that
marker for sed, causing the rule to use the old prefix.

Fix this by keeping the line with @@BINDIR@@ but commenting it out and
marking the newly added line so we can remove it automatically on future
runs.

Running with a prefix of /usr this now produces these 4 lines:

  #ACTION=="add", ENV{.HID_BPF}=="1", RUN{program}+="@@BINDIR@@/udev-hid-bpf add $sys$devpath"
  ACTION=="add", ENV{.HID_BPF}=="1", RUN{program}+="/usr/bin/udev-hid-bpf add $sys$devpath" #MARKER
  #ACTION=="remove", ENV{.HID_BPF}=="1", RUN{program}+="@@BINDIR@@/udev-hid-bpf remove $sys$devpath"
  ACTION=="remove", ENV{.HID_BPF}=="1", RUN{program}+="/usr/bin/udev-hid-bpf remove $sys$devpath" #MARKER

Closes #51

Signed-off-by: default avatarPeter Hutterer <peter.hutterer@who-t.net>
Part-of: <!176>
parent 39a1f48b
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment