Update of /cvsroot/robotflow/RobotFlow
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv26291
Modified Files:
configure.in
Log Message:
more useful message for prefix
Index: configure.in
===================================================================
RCS file: /cvsroot/robotflow/RobotFlow/configure.in,v
retrieving revision 1.58
retrieving revision 1.59
diff -C2 -d -r1.58 -r1.59
*** configure.in 12 Dec 2005 18:33:39 -0000 1.58
--- configure.in 4 Dec 2006 18:17:55 -0000 1.59
***************
*** 255,261 ****
JPEG_LIB="-L/usr/lib -ljpeg"
dnl Look for prefix, if not specified, use FlowDesigner default toolbox prefix
if test "x$prefix" = "xNONE"; then
! prefix=$OVERFLOW_DATA/$PACKAGE
else
dnl this will work, but we should maybe change the variable name
--- 255,263 ----
JPEG_LIB="-L/usr/lib -ljpeg"
+ USING_FD_PREFIX="no"
dnl Look for prefix, if not specified, use FlowDesigner default toolbox prefix
if test "x$prefix" = "xNONE"; then
! prefix=$OVERFLOW_DATA/$PACKAGE
! USING_FD_PREFIX="yes"
else
dnl this will work, but we should maybe change the variable name
***************
*** 368,371 ****
fi
! AC_MSG_RESULT([$PACKAGE will be installed in : $prefix])
--- 370,381 ----
fi
! if test "$USING_FD_PREFIX" = "yes"; then
! AC_MSG_RESULT([$PACKAGE will be installed in the default FlowDesigner toolbox directory :])
! AC_MSG_RESULT([Installation directory : $prefix])
! else
! AC_MSG_RESULT([*** WARNING *** $PACKAGE will be installed at the user defined location. Do NOT specify the --prefix option if you want the default FlowDesigner toolbox directory.])
! AC_MSG_RESULT([Installation directory : $prefix])
! fi
!
!
|