aboutsummaryrefslogtreecommitdiff
path: root/build-aux
ModeNameSize
-rw-r--r--build-self.scm22841logplainabout
-rw-r--r--check-channel-news.scm3244logplainabout
-rw-r--r--check-final-inputs-self-contained.scm3695logplainabout
-rw-r--r--compile-all.scm6378logplainabout
-rw-r--r--compile-as-derivation.scm2526logplainabout
-rw-r--r--convert-xref.scm1016logplainabout
d---------cuirass85logplain
-rw-r--r--generate-authors.scm3870logplainabout
-rwxr-xr-xgit-version-gen8027logplainabout
-rwxr-xr-xgitlog-to-changelog13396logplainabout
-rw-r--r--pre-inst-env.in2191logplainabout
-rwxr-xr-xtest-driver.scm12113logplainabout
-rw-r--r--test-env.in5656logplainabout
-rw-r--r--update-NEWS.scm8395logplainabout
-rw-r--r--update-guix-package.scm8750logplainabout
ommit/tests/gexp.scm?id=24ab804ce11fe12ff49cd144a3d9c4bfcf55b41c'>gexp: Catch and report non-self-quoting gexp inputs....Previously we would, for example, generate build scripts in the store; when trying to run them, we'd get a 'read' error due to the presence of #<foo> syntax in there. * guix/gexp.scm (gexp->sexp)[self-quoting?]: New procedure. [reference->sexp]: Check whether the argument in a <gexp-input> box is self-quoting. Raise a '&gexp-input-error' condition if it's not. * tests/gexp.scm ("lower-gexp, non-self-quoting input"): New test. Ludovic Courtès