Fixed a typo. authored by Karel Slaný's avatar Karel Slaný
......@@ -198,10 +198,10 @@ Ubuntu 16.04 is used to build the 32-bit libraries. The following packages are n
apt install gcc-mingw-w64-i686 g++-mingw-w64-i686 autoconf automake make libtool
```
To build libdatovka use the command:
To build libdatovka use the command from within the source root:
``` shell
mkdir libds; cd libs
mkdir libs; cd libs
../scripts/build_libdatovka_mingw.sh --i386
```
......@@ -213,10 +213,10 @@ Ubuntu 20.04 is used to build the 64-bit libraries. The following packages are n
apt install gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 autoconf automake make libtool
```
To build libdatovka use the command:
To build libdatovka use the command from within the source root:
``` shell
mkdir libds; cd libs
mkdir libs; cd libs
../scripts/build_libdatovka_mingw.sh --x86_64
```
......
......