diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-01-23 23:08:29 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-01-23 23:33:09 +0100 |
commit | 9c9da07f4c28192a05b3a88c7d5d1817ea392d79 (patch) | |
tree | 4cd93d4294cc57a129e45367901e4c83ddab592b | |
parent | 12abb19dfbd90089e04ccbc94f0bd8ee2cbe3729 (diff) | |
download | patches-9c9da07f4c28192a05b3a88c7d5d1817ea392d79.tar patches-9c9da07f4c28192a05b3a88c7d5d1817ea392d79.tar.gz |
guix-build: Fix typo.
* guix-build.in (guix-build)[find-package]: Use `x', not `_', to avoid
confusion with `gettext'.
-rw-r--r-- | guix-build.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix-build.in b/guix-build.in index 7f278a5733..4d3db0aa6d 100644 --- a/guix-build.in +++ b/guix-build.in @@ -205,7 +205,7 @@ Build the given PACKAGE-OR-DERIVATION and return their output paths.\n")) (match (find-packages-by-name name version) ((p) ; one match p) - ((p _ ...) ; several matches + ((p x ...) ; several matches (format (current-error-port) (_ "warning: ambiguous package specification `~a'~%") request) |