diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2017-01-07 16:56:54 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marcjeanmougin@free.fr> | 2017-01-07 16:56:54 +0000 |
| commit | 82dc19eff53f6b2bfe1f434c9b3b38caf40339c9 (patch) | |
| tree | aa38c3e1cdb73fcd08440aeaf04265a8a862faa0 | |
| parent | suppress warnings on symbols dialog (diff) | |
| parent | Don't install python modules with the executable bit (diff) | |
| download | inkscape-82dc19eff53f6b2bfe1f434c9b3b38caf40339c9.tar.gz inkscape-82dc19eff53f6b2bfe1f434c9b3b38caf40339c9.zip | |
install non-executable scripts without executable bit
(bzr r15399)
| -rw-r--r-- | share/extensions/CMakeLists.txt | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/share/extensions/CMakeLists.txt b/share/extensions/CMakeLists.txt index b311c6cbf..47dfbe0a0 100644 --- a/share/extensions/CMakeLists.txt +++ b/share/extensions/CMakeLists.txt @@ -26,8 +26,18 @@ file(GLOB _SCRIPTS "*.sh" "*.rb" ) - +# These files don't need the +x bit +set(_SCRIPTS_NOEXEC + "hersheydata.py" + "hpgl_decoder.py" + "hpgl_encoder.py" + "simplepath.py" + "simplestyle.py" + "simpletransform.py" +) +list(REMOVE_ITEM _SCRIPTS ${_SCRIPTS_NOEXEC}) install(PROGRAMS ${_SCRIPTS} DESTINATION ${INKSCAPE_SHARE_INSTALL}/extensions) +install(FILES ${_SCRIPTS_NOEXEC} DESTINATION ${INKSCAPE_SHARE_INSTALL}/extensions) file(GLOB _FILES "alphabet_soup/*.svg") install(FILES ${_FILES} DESTINATION ${INKSCAPE_SHARE_INSTALL}/extensions/alphabet_soup) |
