diff options
author | Michael Rohleder <mike@rohleder.de> | 2022-12-31 15:16:26 +0100 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2023-01-29 09:03:16 +0800 |
commit | 28818a33bf4b8fac82b3f064c4c11a42d757602f (patch) | |
tree | 3ee14297e868b681f9448526bcedf45297bacef1 /gnu | |
parent | fb371f72f29133c5f2a17f70af54ee3f21fb673e (diff) |
gnu: xfce4-terminal: Fix build.
* gnu/packages/xfce.scm (xfce4-terminal)[arguments]: Add configure-flags to
set CFLAGS.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xfce.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 0b113f0bc4..b5b4411bd1 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -946,6 +946,12 @@ features playback of local media files, DVD/CD and live streams.") (base32 "1x5saijxykxmn2hksf4qvaj965b6i0wy62z9hgrc2vvwmxbmkrbq")))) (build-system gnu-build-system) + (arguments + (list + #:configure-flags + #~(list (string-append "CFLAGS=-I" + #$(this-package-input "libxfce4ui") + "/include/xfce4")))) (native-inputs (list pkg-config intltool)) (inputs |