configure
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #!/bin/sh
  2. # This silliness is because Chris wants the autoconf-related files
  3. # and makefiles not to appear in the top-level directory.  Fine by
  4. # me, I don't much care.  This script just needs to invoke the real
  5. # configure script...
  6. config=`echo $0 | sed -e 's,configure$,config/configure,'`
  7. if test ! -d obj ; then
  8. mkdir obj
  9. fi
  10. if test -n "$1" ; then
  11.   sh $config "$@"
  12. else
  13.   sh $config
  14. fi