[Liboss-commit] CVS: liboss autogen.sh,1.2,1.3
Brought to you by:
thesin
|
From: Benjamin R. <ran...@us...> - 2002-10-22 04:47:46
|
Update of /cvsroot/liboss/liboss
In directory usw-pr-cvs1:/tmp/cvs-serv3545
Modified Files:
autogen.sh
Log Message:
--prefix=`pwd`?? why???
Index: autogen.sh
===================================================================
RCS file: /cvsroot/liboss/liboss/autogen.sh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- autogen.sh 10 May 2002 15:43:21 -0000 1.2
+++ autogen.sh 22 Oct 2002 04:47:43 -0000 1.3
@@ -71,15 +71,12 @@
rm -f config.cache
if [ x"$NO_CONFIGURE" = "x" ]; then
- echo " + Running 'configure --prefix=`pwd` $@':"
+ echo " + Running 'configure $@':"
if [ -z "$*" ]; then
echo " ** If you wish to pass arguments to ./configure, please"
echo " ** specify them on the command line."
- echo " **"
- echo " ** For now --prefix is being set to pwd".
- echo " **"
echo ""
fi
- ./configure --prefix=`pwd` "$@" && \
+ ./configure "$@" && \
echo "Now type 'make' to compile $PKG_NAME" || exit 1
fi
|