diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-09-27 11:20:40 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-09-27 11:22:56 +0200 |
commit | 3c185b24f593c982aeb33996324fa6878c6ed21b (patch) | |
tree | de8f570bd9599049dd10ed14c096ae42b797d03a | |
parent | 9ad09652280deb3eb0ff1d75f3d10e1436d5bc2d (diff) | |
download | guix-3c185b24f593c982aeb33996324fa6878c6ed21b.tar guix-3c185b24f593c982aeb33996324fa6878c6ed21b.tar.gz |
Add missing exports.
Reported by Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
at <https://lists.gnu.org/archive/html/guix-devel/2016-09/msg01686.html>.
* gnu/system/file-systems.scm (%tty-gid): Export.
* guix/build-system/python.scm (default-python, default-python2):
Export.
-rw-r--r-- | gnu/system/file-systems.scm | 1 | ||||
-rw-r--r-- | guix/build-system/python.scm | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/gnu/system/file-systems.scm b/gnu/system/file-systems.scm index 0dc472e3c7..b51d57f079 100644 --- a/gnu/system/file-systems.scm +++ b/gnu/system/file-systems.scm @@ -47,6 +47,7 @@ %binary-format-file-system %shared-memory-file-system %pseudo-terminal-file-system + %tty-gid %immutable-store %control-groups %elogind-file-systems diff --git a/guix/build-system/python.scm b/guix/build-system/python.scm index 705943eb73..adeceb4a89 100644 --- a/guix/build-system/python.scm +++ b/guix/build-system/python.scm @@ -33,6 +33,8 @@ #:export (%python-build-system-modules package-with-python2 strip-python2-variant + default-python + default-python2 python-build python-build-system pypi-uri)) |