Purity: don't look for library dependencies (of the form `-lfoo') in /lib and /usr/lib. Likewise, when searching for included Makefiles, don't look in /usr/include and friends. Borrowed from similar patch for GNU Make and adjusted for Remake. --- remake-4.3+dbg-1.5/src/read.c.orig 2020-03-14 17:06:16.000000000 -0500 +++ remake-4.3+dbg-1.5/src/read.c 2020-07-31 22:34:03.862383862 -0500 @@ -104,7 +104,7 @@ # define INCLUDEDIR "." #endif INCLUDEDIR, -#ifndef _AMIGA +#if 0 "/usr/gnu/include", "/usr/local/include", "/usr/include", --- remake-4.3+dbg-1.5/src/remake.c.orig 2020-03-14 17:06:16.000000000 -0500 +++ remake-4.3+dbg-1.5/src/remake.c 2020-07-31 22:34:26.798330508 -0500 @@ -1665,8 +1665,10 @@ { static const char *dirs[] = { +#if 0 "/lib", "/usr/lib", +#endif #if defined(WINDOWS32) && !defined(LIBDIR) /* * This is completely up to the user at product install time. Just define k's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/system/keyboard.scm
AgeCommit message (Expand)Author
2020-04-06system: Allow for comma-separated keyboard layouts....Reported by Florian Pelz <pelzflorian@pelzflorian.de>. * gnu/bootloader/grub.scm (keyboard-layout-file): Replace commas with hyphens in the first argument to 'computed-file'. * gnu/system/keyboard.scm (keyboard-layout->console-keymap): Likewise. * doc/guix.texi (Keyboard Layout): Add example. Ludovic Courtès
2019-03-24Add (gnu system keyboard)....* gnu/system/keyboard.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. * gnu.scm (%public-modules): Add it. Ludovic Courtès