Changeset 169

Show
Ignore:
Timestamp:
06/17/07 21:43:40 (17 months ago)
Author:
zany
Message:

swig conf cleanup

Location:
trunk/swig
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/swig/perl/Makefile.PL.in

    r114 r169  
    1313# but we want rpath to be @libdir@ or @exec_prefix@/lib 
    1414    'LDDLFLAGS' =>      q[-shared -Wl,-rpath=@prefix@/lib], 
    15     'LIBS'      =>      q[-L@top_builddir@obexftp/.libs -lobexftp 
    16                           -L@top_builddir@multicobex/.libs -lmulticobex 
    17                           -L@top_builddir@bfb/.libs -lbfb 
     15    'LIBS'      =>      q[-L@top_builddir@/obexftp/.libs -lobexftp 
     16                          -L@top_builddir@/multicobex/.libs -lmulticobex 
     17                          -L@top_builddir@/bfb/.libs -lbfb 
    1818                          @OPENOBEX_LIBS@ @BLUETOOTH_LIBS@ @LIBS@], 
    1919    'OBJECT'    =>      'perl_wrap.o', # $(OBJ_EXT) 
  • trunk/swig/ruby/extconf.rb

    r114 r169  
    1616if ENV['PREFIX'] 
    1717  prefix = CONFIG['prefix'] 
    18   CONFIG.each do |key, var| 
    19     CONFIG[key] = var.sub(/#{prefix}/, ENV['PREFIX']) 
     18  %w[ prefix sitedir datadir infodir mandir oldincludedir ].each do |key| 
     19    CONFIG[key] = CONFIG[key].sub(/#{prefix}/, ENV['PREFIX']) 
    2020  end 
    2121end