In the package definition the call to the command 'git' is substituted with the full path to the git executable. This change causes the mix formatting tool to complain that the line is too long. This workaround reformats the file after the substitution is made. --- a/Makefile +++ b/Makefile @@ -265,6 +265,7 @@ format: compile $(call FORMAT) test_formatted: compile + $(call FORMAT,lib/mix/lib/mix/scm/git.ex) $(call FORMAT,--check-formatted) test_erlang: compile $(TEST_ERLS) git logo'/> index : guix
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/pkg-config.scm
AgeCommit message (Expand)Author
2019-11-16Merge remote-tracking branch master into core-updatesMathieu Othacehe
2019-11-07gnu: pkg-config: Memoize 'cross-pkg-config'....When running: guix build --target=arm-linux-gnueabihf gdb -nd this reduces the number of hits in the 'add-data-to-store' cache from 205 (25%) to 163 (21%). * gnu/packages/pkg-config.scm (cross-pkg-config): Turn into an 'mlambda'. Ludovic Courtès
2019-09-24gnu: pkg-config: Fix cross-compilation....* gnu/packages/pkg-config.scm (%pkg-config)[arguments]: Add configure-flags to disable tests that fail when cross-compiling. Mathieu Othacehe