diff options
author | Mario Melara <maamelara@gmail.com> | 2015-12-01 11:59:49 -0800 |
---|---|---|
committer | Mario Melara <maamelara@gmail.com> | 2015-12-01 11:59:49 -0800 |
commit | 0544b164fc717f5221d7545139c18752129499d4 (patch) | |
tree | be66552e45137ae5728bdae6887ecc61b3e45ded /var | |
parent | 4e0d47f1dd1d0eb31ef29e1e25ab68870f087604 (diff) | |
download | spack-0544b164fc717f5221d7545139c18752129499d4.tar.gz spack-0544b164fc717f5221d7545139c18752129499d4.tar.bz2 spack-0544b164fc717f5221d7545139c18752129499d4.tar.xz spack-0544b164fc717f5221d7545139c18752129499d4.zip |
Updated script of mini-xml for adios package
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/packages/mxml/package.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/var/spack/packages/mxml/package.py b/var/spack/packages/mxml/package.py index fc32b56323..f79251d312 100644 --- a/var/spack/packages/mxml/package.py +++ b/var/spack/packages/mxml/package.py @@ -1,9 +1,11 @@ +import os from spack import * class Mxml(Package): """Mini-XML is a small XML library that you can use to read and write XML and XML-like data files in your application without requiring large - non-standard libraries""" + non-standard libraries + """ homepage = "http://www.msweet.org" url = "http://www.msweet.org/files/project3/mxml-2.9.tar.gz" @@ -18,7 +20,7 @@ class Mxml(Package): # Case statement to change CC and CXX flags def install(self, spec, prefix): - configure('--prefix=%s' % prefix, "--disable-shared") + configure('--prefix=%s' % prefix, "--disable-shared", 'CFLAGS=-static') make() make("install") |