Ignore:
Timestamp:
08/10/2008 20:59:20 (4 years ago)
Author:
chris
Message:

Add @build_dir@ as a substituted variable in autoconf script.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • box/trunk/configure.ac

    r2335 r2339  
    308308 
    309309## Figure out the client parcel directory and substitute it 
    310 client_parcel_dir=`perl infrastructure/parcelpath.pl client $target_os` 
     310build_dir=`dirname $0` 
     311build_dir=`cd $build_dir && pwd` 
     312client_parcel_dir=`perl infrastructure/parcelpath.pl backup-client $target_os` 
     313 
    311314os_name=`uname -o` 
    312315if test "$os_name" = "Cygwin"; then 
    313316        client_parcel_dir=`cygpath -wa $client_parcel_dir | sed -e 's|\\\|/|g'` 
    314 fi 
     317        build_dir=`cygpath -wa $build_dir | sed -e 's|\\\|/|g'` 
     318fi 
     319 
    315320AC_SUBST([client_parcel_dir]) 
     321AC_SUBST([build_dir]) 
    316322 
    317323## Figure out version and substitute it in 
Note: See TracChangeset for help on using the changeset viewer.