You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Creation of example CA fails, because DESTDIR is undefined in post_install.cmake.
Install the project...
-- Install configuration: ""
-- Installing: /home/rvoegeli/tmp/secureboard/libsecureboard/.build/libsecureboard/share/libsecureboard/ca/client-root-ca.pem
-- Installing: /home/rvoegeli/tmp/secureboard/libsecureboard/.build/libsecureboard/share/libsecureboard/ca/bob.pem
-- Installing: /home/rvoegeli/tmp/secureboard/libsecureboard/.build/libsecureboard/share/libsecureboard/ca/alice.pem
-- Installing: /home/rvoegeli/tmp/secureboard/libsecureboard/.build/libsecureboard/share/libsecureboard/priv-keys/bob-key.pem
-- Installing: /home/rvoegeli/tmp/secureboard/libsecureboard/.build/libsecureboard/share/libsecureboard/priv-keys/alice-key.pem
running mkdir -p /share/libsecureboard/example-user-device-ca 2>&1
mkdir: das Verzeichnis »/share“ kann nicht angelegt werden: Keine Berechtigung
running /home/rvoegeli/tmp/secureboard/libsecureboard/.build/../script/mk_cert.sh -g -v -r /share/libsecureboard/example-user-device-ca/example-root-ca -d /share/libsecureboard/example-user-device-ca/example-dev-01 -c device-01 2>&1
Generating an EC private key
writing new private key to '/share/libsecureboard/example-user-device-ca/example-root-ca-key.pem'
req: Can't open "/share/libsecureboard/example-user-device-ca/example-root-ca-key.pem" for writing, No such file or directory
running /home/rvoegeli/tmp/secureboard/libsecureboard/.build/../script/mk_cert.sh -v -r /share/libsecureboard/example-user-device-ca/example-root-ca -d /share/libsecureboard/example-user-device-ca/example-dev-02 -c device-02 2>&1
Generating an EC private key
writing new private key to '/share/libsecureboard/example-user-device-ca/example-dev-02-key.pem'
req: Can't open "/share/libsecureboard/example-user-device-ca/example-dev-02-key.pem" for writing, No such file or directory
running /home/rvoegeli/tmp/secureboard/libsecureboard/.build/../script/mk_cert.sh -v -r /share/libsecureboard/example-user-device-ca/example-root-ca -d /share/libsecureboard/example-user-device-ca/example-dev-03 -c device-03 2>&1
Generating an EC private key
writing new private key to '/share/libsecureboard/example-user-device-ca/example-dev-03-key.pem'
req: Can't open "/share/libsecureboard/example-user-device-ca/example-dev-03-key.pem" for writing, No such file or directory
running ln -fs /share/libsecureboard/example-user-device-ca/example-root-ca.pem /share/libsecureboard/ca 2>&1
ln: Die symbolische Verknüpfung '/share/libsecureboard/ca' konnte nicht angelegt werden: Datei oder Verzeichnis nicht gefunden
rehash CA
DESTDIR is never defined in CMakeLists.txt and the install(SCRIPT ...) command does not forward variables anyway.
DESTDIR can be defined in release.sh as parameter to cmake. There is also a little trick to get the variable into the post_install.cmake script.
Creation of example CA fails, because
DESTDIR
is undefined in post_install.cmake.DESTDIR
is never defined in CMakeLists.txt and theinstall(SCRIPT ...)
command does not forward variables anyway.DESTDIR
can be defined in release.sh as parameter to cmake. There is also a little trick to get the variable into the post_install.cmake script.The text was updated successfully, but these errors were encountered: