diff options
author | Andreas Enge <andreas@enge.fr> | 2013-09-26 17:33:33 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2013-09-26 17:33:33 +0200 |
commit | c9cb0825c9fe129e0cf0300ef38729bcbf395857 (patch) | |
tree | c18c38f8135662a02ea78d5249f86976d8d98dad /gnu/packages/xorg.scm | |
parent | 36c0d4300019eaed1b07a644f4d3471d585fe850 (diff) | |
download | guix-c9cb0825c9fe129e0cf0300ef38729bcbf395857.tar guix-c9cb0825c9fe129e0cf0300ef38729bcbf395857.tar.gz |
gnu: xf86-input-joystick: Fix installation path.
* gnu/packages/xorg.scm (xf86-input-joystick): Fix installation path.
Diffstat (limited to 'gnu/packages/xorg.scm')
-rw-r--r-- | gnu/packages/xorg.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 3fc5dc9380..df535c1ced 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -2096,7 +2096,6 @@ tracking.") (license license:x11))) -;; FIXME: Tries to install file joystick-properties.h into ...--xorg-server-1.12.2/include/xorg (define-public xf86-input-joystick (package (name "xf86-input-joystick") @@ -2114,6 +2113,11 @@ tracking.") (build-system gnu-build-system) (inputs `(("pkg-config" ,pkg-config) ("xorg-server" ,xorg-server))) + (arguments + `(#:configure-flags + (list (string-append "--with-sdkdir=" + (assoc-ref %outputs "out") + "/include/xorg")))) (home-page "http://www.x.org/wiki/") (synopsis "xorg implementation of the X Window System") (description "X.org provides an implementation of the X Window System") |