diff options
author | Simon Rettberg | 2017-02-28 22:28:55 +0100 |
---|---|---|
committer | Simon Rettberg | 2017-02-28 22:28:55 +0100 |
commit | c79dec3ba517967c09ef398b20d577271774df19 (patch) | |
tree | 163608e6b443aff1d1380d8308589c9c9e9a6952 /core/modules/beamergui | |
parent | [beamergui] FFS, use brain! (name binary properly, include in target) (diff) | |
download | mltk-c79dec3ba517967c09ef398b20d577271774df19.tar.gz mltk-c79dec3ba517967c09ef398b20d577271774df19.tar.xz mltk-c79dec3ba517967c09ef398b20d577271774df19.zip |
Add bash shebangs to all our includes:
github misidentifies lots of includes in its code stats and
syntax highlighting. Try to make it a nicer place by giving
it a hint via that shebang. It's actually useless in files
that are being sourced, but it doesn't hurt either.
Diffstat (limited to 'core/modules/beamergui')
-rw-r--r-- | core/modules/beamergui/module.build | 1 | ||||
-rw-r--r-- | core/modules/beamergui/module.conf | 1 | ||||
-rw-r--r-- | core/modules/beamergui/module.conf.debian | 1 | ||||
-rw-r--r-- | core/modules/beamergui/module.conf.fedora | 1 | ||||
-rw-r--r-- | core/modules/beamergui/module.conf.opensuse | 1 | ||||
-rw-r--r-- | core/modules/beamergui/module.conf.ubuntu | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/core/modules/beamergui/module.build b/core/modules/beamergui/module.build index 36175c34..915b4b74 100644 --- a/core/modules/beamergui/module.build +++ b/core/modules/beamergui/module.build @@ -1,4 +1,5 @@ #!/bin/bash +#!/bin/bash fetch_source() { git clone "${REQUIRED_GIT}" src diff --git a/core/modules/beamergui/module.conf b/core/modules/beamergui/module.conf index e9d2f10e..97d1e350 100644 --- a/core/modules/beamergui/module.conf +++ b/core/modules/beamergui/module.conf @@ -1,3 +1,4 @@ +#!/bin/bash REQUIRED_GIT="git://git.openslx.org/openslx-ng/beamergui.git" REQUIRED_BINARIES=" beamergui diff --git a/core/modules/beamergui/module.conf.debian b/core/modules/beamergui/module.conf.debian index ea4cd194..c7c4e2c1 100644 --- a/core/modules/beamergui/module.conf.debian +++ b/core/modules/beamergui/module.conf.debian @@ -1,3 +1,4 @@ +#!/bin/bash REQUIRED_INSTALLED_PACKAGES=" libqt4-dev libxrandr-dev diff --git a/core/modules/beamergui/module.conf.fedora b/core/modules/beamergui/module.conf.fedora index 8b46942d..258fdb45 100644 --- a/core/modules/beamergui/module.conf.fedora +++ b/core/modules/beamergui/module.conf.fedora @@ -1,3 +1,4 @@ +#!/bin/bash REQUIRED_INSTALLED_PACKAGES=" qt-devel libXrandr-devel diff --git a/core/modules/beamergui/module.conf.opensuse b/core/modules/beamergui/module.conf.opensuse index 01586fe3..96b21b51 100644 --- a/core/modules/beamergui/module.conf.opensuse +++ b/core/modules/beamergui/module.conf.opensuse @@ -1,3 +1,4 @@ +#!/bin/bash REQUIRED_INSTALLED_PACKAGES=" libqt4-devel libxrandr-devel diff --git a/core/modules/beamergui/module.conf.ubuntu b/core/modules/beamergui/module.conf.ubuntu index ea4cd194..c7c4e2c1 100644 --- a/core/modules/beamergui/module.conf.ubuntu +++ b/core/modules/beamergui/module.conf.ubuntu @@ -1,3 +1,4 @@ +#!/bin/bash REQUIRED_INSTALLED_PACKAGES=" libqt4-dev libxrandr-dev |