diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2012-11-09 16:46:31 -0200 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2012-11-09 16:46:31 -0200 |
commit | 4e8266e93dad145bdcd07d356153937a365b9166 (patch) | |
tree | e779f119b94fa7663e8a475193c12a60ac943802 /java/java-rxtx/0003-lockdir-location.patch | |
parent | 90e74e389fa33e42edd1d538e661033929522027 (diff) | |
parent | f19d0f1aeaad720e0559769ce636b3283cf7b8c6 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'java/java-rxtx/0003-lockdir-location.patch')
-rw-r--r-- | java/java-rxtx/0003-lockdir-location.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/java/java-rxtx/0003-lockdir-location.patch b/java/java-rxtx/0003-lockdir-location.patch new file mode 100644 index 000000000..78a757f81 --- /dev/null +++ b/java/java-rxtx/0003-lockdir-location.patch @@ -0,0 +1,18 @@ +Fix the location of device lock files. + +Use the new semi-standard device lock file directory on GNU/Linux. This is +nescessary on (at least) Arch Linux and Parabola GNU/Linux. + +http://lists.freedesktop.org/archives/systemd-devel/2011-March/001823.html + +--- RXTX.orig/src/SerialImp.h ++++ RXTX/src/SerialImp.h +@@ -109,7 +109,7 @@ + /* Ports known on the OS */ + #if defined(__linux__) + # define DEVICEDIR "/dev/" +-# define LOCKDIR "/var/lock" ++# define LOCKDIR "/var/lock/lockdev" + # define LOCKFILEPREFIX "LCK.." + # define FHS + #endif /* __linux__ */ |