Merge pull request #381 from josehu07/patch-1

Fix a Tiny Typo in README.md
This commit is contained in:
Robert Baldyga 2020-07-12 09:29:20 +02:00 committed by GitHub
commit d144f18959
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,8 +47,8 @@ SRCDIR and INCDIR are respectively your source and include directories, use foll
commands to deploy OCF into your project: commands to deploy OCF into your project:
~~~{.sh} ~~~{.sh}
make -C $OCFDIF src O=$SRCDIR make -C $OCFDIR src O=$SRCDIR
make -C $OCFDIF inc O=$INCDIR make -C $OCFDIR inc O=$INCDIR
~~~ ~~~
By default this will not copy OCF source files but create symbolic links to them, By default this will not copy OCF source files but create symbolic links to them,
@ -57,8 +57,8 @@ to copy OCF source files (e.g. you don't want to distribute whole OCF repository
as your submodule) you can use following commands: as your submodule) you can use following commands:
~~~{.sh} ~~~{.sh}
make -C $OCFDIF src O=$SRCDIR CMD=cp make -C $OCFDIR src O=$SRCDIR CMD=cp
make -C $OCFDIF inc O=$INCDIR CMD=cp make -C $OCFDIR inc O=$INCDIR CMD=cp
~~~ ~~~
## Examples ## Examples