vitasdk / vdpm

SDK installer and package "manager" for $VITASDK
GNU Lesser General Public License v2.1
222 stars 62 forks source link

./install-all.sh find vdpm_install... No such file or directory #97

Open olokos opened 1 year ago

olokos commented 1 year ago

I'm not sure if that's by design or if this actually is an issue?

find: ‘/tmp/vdpm_install_libmad’: No such file or directory which is then repeated for literally every entry with find

find: ‘/tmp/vdpm_install_pib’: No such file or directory
Installing pib...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
 13 59808   13  8271    0     0   8930      0  0:00:06 --:--:--  0:00:06  8930include/
include/pib.h
include/EGL/
include/KHR/
include/GLES2/
include/GLES2/gl2platform.h
include/GLES2/gl2.h
include/GLES2/gl2ext.h
include/KHR/khrplatform.h
include/EGL/eglplatform.h
include/EGL/egl.h
include/EGL/eglext.h
100 59808  100 59808    0     0  54514      0  0:00:01  0:00:01 --:--:--  296k
lib/
lib/libpib.a
success

With that said, it seems like the script worked for me, but each line that had find like in the example No such file or directory

Not sure if that's expected or an actual bug?

nabetse00 commented 1 year ago

Yes it is expected since vdpm makes a tmp file when a package is downloaded to remember that it's been installed.

Since its a first install then then this file doesn't exist

find: ‘/tmp/vdpm_install_XXX’: No such file or directory

and vdpm installs it ...

This may cause some trouble if you mess with /usr/local/vitasdk manualy.

ls  /tmp/vdpm_install_*

will list packages installed.

if you have some problems on update a possible solution is to change in ./vdpm script

CLEAN=0

to

CLEAN=1

then

 ./vdpm <somepackage this doesnt mater>

It will erase all /tmp/vdpminstall* files

Go back to

CLEAN=0

And test ...

looni01 commented 1 year ago

I’m trying to install vdpm the first time and have the same problem with "/tmp/vdpm_install_jansson" . Sadly the recommended change in ./vdpm script did not fix it. :(

isage commented 1 year ago

This isn't bug or issue.

If you're having real problems with vdpm - that's not it.