Changeset 2095 for trunk/configure.in


Ignore:
Timestamp:
Feb 10, 2011, 2:31:10 PM (14 years ago)
Author:
dkearney
Message:

adding --with-install flag for bat/buildscripts/dpkg.sh and building on hub vm

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.in

    r2081 r2095  
    1717    exec_prefix=$prefix
    1818fi
     19
     20AC_ARG_WITH(
     21    [install],
     22    [AS_HELP_STRING([--with-install[=DIR]],
     23        [location of installation @<:@default=yes@:>@])],
     24    [],
     25    [with_install=yes])
     26if test "$with_install" != "yes"; then
     27    INSTALL_PREFIX=$with_install
     28else
     29    INSTALL_PREFIX=$prefix
     30fi
     31AC_SUBST(INSTALL_PREFIX)
     32
    1933
    2034if test "${libdir}" != "${prefix}/lib"; then
Note: See TracChangeset for help on using the changeset viewer.