summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2016-10-17 08:50:25 +0200
committerRémi Verschelde <rverschelde@gmail.com>2016-10-17 20:10:46 +0200
commitfc8ccd5b8c8b779bffd0f4d7f22f2f964c939163 (patch)
tree884aef60419ceb724800fe71c23adc4af238bbdd /modules
parent89132224a651c0e0d4121270f63decb9a678ff88 (diff)
SCsub: Add python shebang as a hint for syntax highlighting
Also switch existing shebangs to "better" /usr/bin/env python.
Diffstat (limited to 'modules')
-rw-r--r--modules/SCsub2
-rw-r--r--modules/chibi/SCsub2
-rw-r--r--modules/cscript/SCsub2
-rw-r--r--modules/dds/SCsub2
-rw-r--r--modules/enet/SCsub2
-rw-r--r--modules/etc1/SCsub2
-rw-r--r--modules/freetype/SCsub2
-rw-r--r--modules/gdscript/SCsub2
-rw-r--r--modules/gridmap/SCsub2
-rw-r--r--modules/ik/SCsub2
-rw-r--r--modules/jpg/SCsub2
-rw-r--r--modules/mpc/SCsub2
-rw-r--r--modules/ogg/SCsub2
-rw-r--r--modules/openssl/SCsub2
-rw-r--r--modules/opus/SCsub2
-rw-r--r--modules/pbm/SCsub2
-rw-r--r--modules/pvr/SCsub2
-rw-r--r--modules/squish/SCsub2
-rw-r--r--modules/theora/SCsub2
-rw-r--r--modules/visual_script/SCsub2
-rw-r--r--modules/vorbis/SCsub2
-rw-r--r--modules/webp/SCsub2
22 files changed, 44 insertions, 0 deletions
diff --git a/modules/SCsub b/modules/SCsub
index f37c3a55c7..4084248086 100644
--- a/modules/SCsub
+++ b/modules/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
env_modules = env.Clone()
diff --git a/modules/chibi/SCsub b/modules/chibi/SCsub
index e39554977a..dffd966753 100644
--- a/modules/chibi/SCsub
+++ b/modules/chibi/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
Import('env_modules')
diff --git a/modules/cscript/SCsub b/modules/cscript/SCsub
index 9ff13fc43f..0882406761 100644
--- a/modules/cscript/SCsub
+++ b/modules/cscript/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
env.add_source_files(env.modules_sources, "*.cpp")
diff --git a/modules/dds/SCsub b/modules/dds/SCsub
index c54a58e079..3d92ff02d6 100644
--- a/modules/dds/SCsub
+++ b/modules/dds/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
Import('env_modules')
diff --git a/modules/enet/SCsub b/modules/enet/SCsub
index 66c60baabe..5175803f44 100644
--- a/modules/enet/SCsub
+++ b/modules/enet/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
Import('env_modules')
diff --git a/modules/etc1/SCsub b/modules/etc1/SCsub
index ad343ab579..ea035fcde3 100644
--- a/modules/etc1/SCsub
+++ b/modules/etc1/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
Import('env_modules')
diff --git a/modules/freetype/SCsub b/modules/freetype/SCsub
index 10c58558a5..1f759dee9a 100644
--- a/modules/freetype/SCsub
+++ b/modules/freetype/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
# Not building in a separate env as core needs it
diff --git a/modules/gdscript/SCsub b/modules/gdscript/SCsub
index 9ff13fc43f..0882406761 100644
--- a/modules/gdscript/SCsub
+++ b/modules/gdscript/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
env.add_source_files(env.modules_sources, "*.cpp")
diff --git a/modules/gridmap/SCsub b/modules/gridmap/SCsub
index 9ff13fc43f..0882406761 100644
--- a/modules/gridmap/SCsub
+++ b/modules/gridmap/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
env.add_source_files(env.modules_sources, "*.cpp")
diff --git a/modules/ik/SCsub b/modules/ik/SCsub
index 9ff13fc43f..0882406761 100644
--- a/modules/ik/SCsub
+++ b/modules/ik/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
env.add_source_files(env.modules_sources, "*.cpp")
diff --git a/modules/jpg/SCsub b/modules/jpg/SCsub
index 258fd2f4ad..28fb81895d 100644
--- a/modules/jpg/SCsub
+++ b/modules/jpg/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
Import('env_modules')
diff --git a/modules/mpc/SCsub b/modules/mpc/SCsub
index d2662c34ab..09f0c05daa 100644
--- a/modules/mpc/SCsub
+++ b/modules/mpc/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
Import('env_modules')
diff --git a/modules/ogg/SCsub b/modules/ogg/SCsub
index fd5ddf55c8..2e1fe2e0c0 100644
--- a/modules/ogg/SCsub
+++ b/modules/ogg/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
Import('env_modules')
diff --git a/modules/openssl/SCsub b/modules/openssl/SCsub
index 79facba99a..3cc6f21bd2 100644
--- a/modules/openssl/SCsub
+++ b/modules/openssl/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
Import('env_modules')
diff --git a/modules/opus/SCsub b/modules/opus/SCsub
index 5c587a0783..603f5a48c4 100644
--- a/modules/opus/SCsub
+++ b/modules/opus/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
Import('env_modules')
diff --git a/modules/pbm/SCsub b/modules/pbm/SCsub
index e0b19fb2a3..fa328be025 100644
--- a/modules/pbm/SCsub
+++ b/modules/pbm/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
Import('env_modules')
diff --git a/modules/pvr/SCsub b/modules/pvr/SCsub
index cd0a3129da..4ead52f82f 100644
--- a/modules/pvr/SCsub
+++ b/modules/pvr/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
Import('env_modules')
diff --git a/modules/squish/SCsub b/modules/squish/SCsub
index 072921ef64..3fdc587652 100644
--- a/modules/squish/SCsub
+++ b/modules/squish/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
Import('env_modules')
diff --git a/modules/theora/SCsub b/modules/theora/SCsub
index cdb78e955e..36dd02e7dd 100644
--- a/modules/theora/SCsub
+++ b/modules/theora/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
Import('env_modules')
diff --git a/modules/visual_script/SCsub b/modules/visual_script/SCsub
index 9ff13fc43f..0882406761 100644
--- a/modules/visual_script/SCsub
+++ b/modules/visual_script/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
env.add_source_files(env.modules_sources, "*.cpp")
diff --git a/modules/vorbis/SCsub b/modules/vorbis/SCsub
index f3dbc893fc..3220cb454c 100644
--- a/modules/vorbis/SCsub
+++ b/modules/vorbis/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
Import('env_modules')
diff --git a/modules/webp/SCsub b/modules/webp/SCsub
index 4997aa3359..38585a1ff2 100644
--- a/modules/webp/SCsub
+++ b/modules/webp/SCsub
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
Import('env')
Import('env_modules')