summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2017-01-07 16:56:54 +0000
committerMarc Jeanmougin <marcjeanmougin@free.fr>2017-01-07 16:56:54 +0000
commit82dc19eff53f6b2bfe1f434c9b3b38caf40339c9 (patch)
treeaa38c3e1cdb73fcd08440aeaf04265a8a862faa0
parentsuppress warnings on symbols dialog (diff)
parentDon't install python modules with the executable bit (diff)
downloadinkscape-82dc19eff53f6b2bfe1f434c9b3b38caf40339c9.tar.gz
inkscape-82dc19eff53f6b2bfe1f434c9b3b38caf40339c9.zip
install non-executable scripts without executable bit
(bzr r15399)
-rw-r--r--share/extensions/CMakeLists.txt12
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)