diff options
Diffstat (limited to 'repo')
-rw-r--r-- | repo/core/python.xibuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/repo/core/python.xibuild b/repo/core/python.xibuild index 85110af..7e71733 100644 --- a/repo/core/python.xibuild +++ b/repo/core/python.xibuild @@ -12,6 +12,6 @@ build () { } package () { - ln $PKG_DEST/usr/bin/python3 $PKG_DEST/usr/bin/python - ln $PKG_DEST/usr/bin/pip3 $PKG_DEST/usr/bin/pip + ln -s /usr/bin/python3 $PKG_DEST/usr/bin/python + ln -s /usr/bin/pip3 $PKG_DEST/usr/bin/pip } |