summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/util-linux/package.py
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2016-08-10 01:50:00 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2016-08-10 16:33:39 -0700
commit240f1fd2239552f37d0f8a8841496414b163ef10 (patch)
tree9bf142e5208ec715ae1ba0a556799276a77b27a6 /var/spack/repos/builtin/packages/util-linux/package.py
parent867121ca68e436e95fe338b4ca80ab154dd6388a (diff)
downloadspack-240f1fd2239552f37d0f8a8841496414b163ef10.tar.gz
spack-240f1fd2239552f37d0f8a8841496414b163ef10.tar.bz2
spack-240f1fd2239552f37d0f8a8841496414b163ef10.tar.xz
spack-240f1fd2239552f37d0f8a8841496414b163ef10.zip
Spack packages now PEP8 compliant.
Diffstat (limited to 'var/spack/repos/builtin/packages/util-linux/package.py')
-rw-r--r--var/spack/repos/builtin/packages/util-linux/package.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/util-linux/package.py b/var/spack/repos/builtin/packages/util-linux/package.py
index bf6972683d..99af170ca1 100644
--- a/var/spack/repos/builtin/packages/util-linux/package.py
+++ b/var/spack/repos/builtin/packages/util-linux/package.py
@@ -23,7 +23,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##############################################################################
from spack import *
-import os
+
class UtilLinux(Package):
"""Util-linux is a suite of essential utilities for any Linux system."""
@@ -36,9 +36,9 @@ class UtilLinux(Package):
depends_on("python@2.7:")
def install(self, spec, prefix):
- configure("--prefix=%s" % prefix,
- "PKG_CONFIG_PATH=%s/pkgconfig" % spec['python'].prefix.lib,
- "--disable-use-tty-group")
+ configure("--prefix=%s" % prefix,
+ "PKG_CONFIG_PATH=%s/pkgconfig" % spec['python'].prefix.lib,
+ "--disable-use-tty-group")
make()
make("install")