Ignore:
Timestamp:
2010-01-26T13:17:21+13:00 (14 years ago)
Author:
mdewsnip
Message:

Added code to set the --bindir option when configuring subdirectories, so the binaries (eg. sqlite3) are put in the right place.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/gs2-core/configure

    r21534 r21624  
    27222722fi
    27232723
     2724
     2725# Determine the OS we're running on, and set the --bindir option appropriately
     2726gsdlos=`uname | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`
     2727if test "`echo $gsdlos | sed 's/cygwin//'`" != "$gsdlos" ; then
     2728  # Cygwin
     2729  gsdlos=windows
     2730fi
     2731ac_configure_args="$ac_configure_args --bindir=`pwd`/bin/$gsdlos"
    27242732
    27252733# Configure the common-src subdirectory
Note: See TracChangeset for help on using the changeset viewer.