Changeset 1100 for trunk/lang/python


Ignore:
Timestamp:
Aug 6, 2008, 4:20:58 AM (16 years ago)
Author:
gah
Message:

assorted lang fixes

Location:
trunk/lang/python
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/lang/python/Makefile.in

    r1090 r1100  
    2323PYTHON_VERSION  = @PYTHON_VERSION@
    2424pythonlib       = $$RAPPTURE_INSTALL_DIR/lib/python$(PYTHON_VERSION)/site-packages
    25 envfile         = _python.env
     25envfile         = python.env
    2626
    2727ARCHFLAGS       =
     
    4141install:
    4242        $(PYTHON) setup.py install --prefix=$(prefix)
    43         $(INSTALL) -m 555 $(envfile) $(bindir)
     43        $(MKDIR_P) $(bindir)/lang
     44        $(INSTALL) -m 555 $(envfile) $(bindir)/lang
    4445clean:
    4546        $(PYTHON) setup.py clean
  • trunk/lang/python/setup.py.in

    r1018 r1100  
    44tmpdir = 'build/tmp/'
    55srcdir = '@srcdir@/Rappture/'
    6 incdir = '@prefix@/include'
    7 libdir = '@prefix@/lib'
     6incdir = '@srcdir@/../../src/core'
     7libdir = '@srcdir@/../../src/core'
    88
    99library_module = Extension('Rappture.library',
     
    1111                           sources = [ tmpdir+'PyRpLibrary.cc' ],
    1212                           library_dirs = [ libdir, '../src' ],
     13                           output_dir = ['/tmp'],
    1314                           libraries = [ 'rappture' ] )
    1415
Note: See TracChangeset for help on using the changeset viewer.