mirror of
https://github.com/hermitcore/libhermit.git
synced 2025-03-09 00:00:03 +01:00
Merge pull request #1 from hermitcore/master
Python changed to Python3 while installation
This commit is contained in:
commit
0ea71713a6
2 changed files with 2 additions and 2 deletions
|
@ -95,7 +95,7 @@ such as:
|
|||
To build HermitCore from source (without compiler), the repository with its submodules has to be cloned.
|
||||
|
||||
```bash
|
||||
$ git clone git@github.com:hermitcore/libhermit.git
|
||||
$ git clone git@github.com:hermitcore/libhermit.git HermitCore
|
||||
$ cd HermitCore
|
||||
$ git submodule init
|
||||
$ git submodule update
|
||||
|
|
|
@ -15,7 +15,7 @@ DIR="$(basename ${ARCHIVE} .tar.gz)"
|
|||
relpath() {
|
||||
# workaround because Ubuntu seems to use an ancient realpath version
|
||||
# https://stackoverflow.com/questions/2564634/convert-absolute-path-into-relative-path-given-a-current-directory-using-bash#comment12808306_7305217
|
||||
python -c "import os.path; print(os.path.relpath('${2:-$PWD}','$1'))";
|
||||
python3 -c "import os.path; print(os.path.relpath('${2:-$PWD}','$1'))";
|
||||
}
|
||||
|
||||
HERMIT_TOP="$(git rev-parse --show-toplevel)"
|
||||
|
|
Loading…
Add table
Reference in a new issue