Maram Abbas wrote:
moram@moram-PC ~/cygdrve/c/source/aoo/main
$ ./configure\
--with-dmake-url="
https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2";
-bash: ./configure--with-dmake-url=
https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2:
No such file or directory

E-mail is a horrible medium for this, but it looks like you are missing a space near the end of the first line. You can see it from the error message, where it doesn't look for a script named "configure" but "configure--with[...]".

# Good:

$ ./configure --with-dmake-url="https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2";

# Equally good, note space at the end of the first line:

$ ./configure \
> --with-dmake-url="https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2";

# Not good, note missing space at the end of first line:

$ ./configure\
> --with-dmake-url="https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2";

See https://pastebin.com/7DRKKBqv for a more readable version of the above in case the mailing list destroys formatting.

Regards,
  Andrea.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org

Reply via email to