Changeset 1093


Ignore:
Timestamp:
Aug 5, 2008, 4:09:07 PM (16 years ago)
Author:
gah
Message:

yet another fix for perl language binding

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure

    r1092 r1093  
    738738PERL_VENDORLIB
    739739PERL_PRIVLIB
     740PERL_INSTALLARCHLIB
    740741PERL_VERSION_RV
    741742PYTHON
     
    89288929      PERL_VENDORLIB=`${PERL} -MConfig -e 'print $Config{vendorlib}'`
    89298930      PERL_PRIVLIB=`${PERL} -MConfig -e 'print $Config{privlib}'`
     8931      PERL_INSTALLARCHLIB=`${PERL} -MConfig -e 'print $Config{installarchlib}'`
    89308932      PERL_VERSION_RV=`echo ${PERL_VERSION} | cut -d'.' -f1-2`
    89318933    fi
     
    89338935{ $as_echo "$as_me:$LINENO: result: ${PERL}" >&5
    89348936$as_echo "${PERL}" >&6; }
     8937
    89358938
    89368939
  • trunk/configure.in

    r1092 r1093  
    174174      PERL_VENDORLIB=`${PERL} -MConfig -e 'print $Config{vendorlib}'`
    175175      PERL_PRIVLIB=`${PERL} -MConfig -e 'print $Config{privlib}'`
     176      PERL_INSTALLARCHLIB=`${PERL} -MConfig -e 'print $Config{installarchlib}'`
    176177      PERL_VERSION_RV=`echo ${PERL_VERSION} | cut -d'.' -f1-2`
    177178    fi
     
    186187AC_SUBST(PERL_VENDORLIB)
    187188AC_SUBST(PERL_PRIVLIB)
     189AC_SUBST(PERL_INSTALLARCHLIB)
    188190AC_SUBST(PERL_VERSION_RV)
    189191
  • trunk/lang/perl/Makefile.in

    r1092 r1093  
    2929                -I$(srcdir) \
    3030                -I$(srcdir)/../../src/core \
    31                 -I$(privlib)/i686-linux/CORE
     31                -I$(installarchlib)/CORE
    3232
    3333LIBS            = \
     
    4545RM              = rm -f
    4646PERL            = @PERL@
    47 POD2MAN         = @POD2MAN@
    48 XSUBPP          = @XSUBPP@
    4947PERL_ARCHLIB    = @PERL_ARCHLIB@
    5048PERL_VERSION    = @PERL_VERSION@
     
    5351perl5dir        = $$RAPPTURE_INSTALL_DIR/lib/perl/$(PERL_VERSION_RV)
    5452envfile         = perl.env
     53includes        = @PERL_INCLUDES@
    5554ccflags         = @PERL_CCFLAGS@
    5655cppflags        = @PERL_CPPFLAGS@
     
    5857privlib         = @PERL_PRIVLIB@
    5958archlib         = @PERL_ARCHLIB@
     59installarchlib  = @PERL_INSTALLARCHLIB@
    6060
    6161name            = Rappture
     
    7979
    8080$(envfile):
    81         echo 'export PERL5LIB=$(perl5dir):$$PERL5LIB' > $(envfile)
     81        echo 'export PERL5LIB=$(destdir):$$PERL5LIB' > $(envfile)
    8282
    8383install:
Note: See TracChangeset for help on using the changeset viewer.