I propose the following patch for
configure.in:
Index:
configure.in
===================================================================
--- configure.in (revision 4121)
+++ configure.in (working copy)
@@ -65,7 +65,7 @@
===================================================================
--- configure.in (revision 4121)
+++ configure.in (working copy)
@@ -65,7 +65,7 @@
AC_PATH_PROG(PUIC, puic, no,
[$PATH:/opt/perl-Qt/bin])
if test "$PUIC" = "no"; then
- if test -d .svn; then
+ if test -f autogen.sh; then
AC_MSG_WARN([*** You will not be able to build the OSCAR wizard])
AC_MSG_WARN([*** You need to install Perl-Qt to be able to build the wizard])
PUIC="@echo puic"
if test "$PUIC" = "no"; then
- if test -d .svn; then
+ if test -f autogen.sh; then
AC_MSG_WARN([*** You will not be able to build the OSCAR wizard])
AC_MSG_WARN([*** You need to install Perl-Qt to be able to build the wizard])
PUIC="@echo puic"
In this case, even if I exported the
SVN repository (and thus .svn wouldn't exist), the configure script would still
complain about not having Perl-Qt (puic) installed (autogen.sh would not exist
in a distribution tarball).
If nobody objects, I'll check this
in.
Thanks,
Bernard
