Changeset 2213 for trunk


Ignore:
Timestamp:
2001-03-21T08:48:08+12:00 (23 years ago)
Author:
say1
Message:

sorted out the quotes

Location:
trunk/gsdl
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/configure

    r2204 r2213  
    596596  export MICO_DIR=$enableval
    597597else
    598   export MICO_DIR=default
     598  export MICO_DIR="default"
    599599fi
    600600
     
    12251225if test $USE_CORBA = 1; then
    12261226
    1227 if test $MICO_DIR = default; then
     1227if test $MICO_DIR = "default"; then
    12281228#do something
    12291229MICO_INC="-I packages/mico/mico/include"
  • trunk/gsdl/configure.in

    r2204 r2213  
    2828AC_SUBST(USE_CORBA)
    2929
    30 AC_ARG_WITH(micodir, [  --with-micodir          Use installed MICO directory], export MICO_DIR=$enableval, export MICO_DIR=default)
     30AC_ARG_WITH(micodir, [  --with-micodir          Use installed MICO directory], export MICO_DIR=$enableval, export MICO_DIR="default")
    3131AC_DEFINE(MICO_DIR)
    3232AC_SUBST(MICO_DIR)
     
    6060if test $USE_CORBA = 1; then
    6161
    62 if test $MICO_DIR = default; then
     62if test $MICO_DIR = "default"; then
    6363#do something
    6464MICO_INC="-I packages/mico/mico/include"
  • trunk/gsdl/packages/Makefile.in

    r2205 r2213  
    4040ifeq ($(USE_CORBA), 1)
    4141ifeq ($(MICO_DIR), default)
    42 CORBA=mico/mico
     42CORBA="mico/mico"
    4343else
    4444CORBA=
Note: See TracChangeset for help on using the changeset viewer.