blob: 3b01ddeb0034f59b885095b32f5c848a4fc8192c (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
# Setup for compile time checks of fastmouse for linux build.
set -x
rm ./linux/drivers/hid/hid-input.c
ln -s "${PWD}"/src/hid-input.c "${PWD}"/linux/drivers/hid/hid-input.c
|