From: Paul McEnery <pmcenery@gmail.com>
Date: Sat, 13 Jul 2024 10:52:32 -0400
Subject: Remove hard coded path to udevadm executable.

Last-Update: 2017-09-08

The udevadm executable has moved. Rely on the path now to
find the correct location of udevadm.
---
 ipheth-pair/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ipheth-pair/Makefile b/ipheth-pair/Makefile
index 5b115cc..bce8e26 100644
--- a/ipheth-pair/Makefile
+++ b/ipheth-pair/Makefile
@@ -8,7 +8,7 @@ ipheth-pair: ipheth-pair.o
 install:
 	install -m 0755 ipheth-pair /lib/udev/
 	install -m 0644 90-iphone-tether.rules /etc/udev/rules.d
-	/sbin/udevadm control --reload-rules
+	udevadm control --reload-rules
 
 clean:
 	rm -f *.o ipheth-pair
