Changeset 8923


Ignore:
Timestamp:
Jun 20, 2013, 7:55:58 AM (12 years ago)
Author:
steve
Message:

Change to deal with python location containing spaces

Location:
trunk/anuga_core/source/anuga
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/source/anuga/abstract_2d_finite_volumes/generic_boundary_conditions.py

    r8882 r8923  
    4545        the jth element of vector q must correspond to the jth conserved
    4646        quantity in domain.
     47
     48        This implementation uses the evaluate proceudure, but for efficiency
     49        it is recommended to overload this procedure with a numpy or C based
     50        implementation.
    4751        """
    4852
  • trunk/anuga_core/source/anuga/utilities/compile.py

    r8808 r8923  
    321321    if sys.platform == 'win32':   
    322322      if fitlibs is "":
    323         s = '%s -%s %s ../utilities/quad_tree.o ../utilities/sparse_dok.o ../utilities/sparse_csr.o -o %s.%s -lm  -fopenmp' %(loader, sharedflag, object_files, root1, libext)
     323        s = '%s -%s %s ../utilities/quad_tree.o ../utilities/sparse_dok.o ../utilities/sparse_csr.o -o "%s.%s" -lm  -fopenmp' %(loader, sharedflag, object_files, root1, libext)
    324324      else:
    325         s = '%s -%s %s ../utilities/quad_tree.o ../utilities/sparse_dok.o ../utilities/sparse_csr.o -o %s.%s %s -lm  -fopenmp' %(loader, sharedflag, object_files, root1, libext, fitlibs)
     325        s = '%s -%s %s ../utilities/quad_tree.o ../utilities/sparse_dok.o ../utilities/sparse_csr.o -o "%s.%s" "%s" -lm  -fopenmp' %(loader, sharedflag, object_files, root1, libext, fitlibs)
    326326    else:   
    327327      if fitlibs is "":
Note: See TracChangeset for help on using the changeset viewer.