Skip to content
Snippets Groups Projects
Commit d5aab525 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

fix: only apply libQt5Core.so fix when exists

parent 81de3a34
No related branches found
No related tags found
1 merge request!633fix: only apply libQt5Core.so fix when exists
...@@ -173,7 +173,9 @@ RUN du -sh $SPACK_ROOT \ ...@@ -173,7 +173,9 @@ RUN du -sh $SPACK_ROOT \
## See ## See
#https://askubuntu.com/questions/1034313/ubuntu-18-4-libqt5core-so-5-cannot-open-shared-object-file-no-such-file-or-dir #https://askubuntu.com/questions/1034313/ubuntu-18-4-libqt5core-so-5-cannot-open-shared-object-file-no-such-file-or-dir
## and links therin for more info ## and links therin for more info
RUN strip --remove-section=.note.ABI-tag /usr/local/lib/libQt5Core.so RUN if [ -f /usr/local/lib/libQt5Core.so ] ; then \
strip --remove-section=.note.ABI-tag /usr/local/lib/libQt5Core.so;\
fi
RUN spack debug report \ RUN spack debug report \
| sed "s/^/ - /" | sed "s/\* \*\*//" | sed "s/\*\*//" \ | sed "s/^/ - /" | sed "s/\* \*\*//" | sed "s/\*\*//" \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment