diff options
Diffstat (limited to 'libLumina')
-rwxr-xr-x | libLumina/make-global-h.sh | 7 | ||||
-rwxr-xr-x | libLumina/make-linux-distro.sh | 11 |
2 files changed, 0 insertions, 18 deletions
diff --git a/libLumina/make-global-h.sh b/libLumina/make-global-h.sh deleted file mode 100755 index f6457848..00000000 --- a/libLumina/make-global-h.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -# create global.h - -echo "#ifndef PREFIX - #define PREFIX QString(\"${1}\") -#endif" > global.h diff --git a/libLumina/make-linux-distro.sh b/libLumina/make-linux-distro.sh deleted file mode 100755 index 47c18e9b..00000000 --- a/libLumina/make-linux-distro.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh - -#Quick script to ensure that the proper Linux distro template is selected within the libLumina build -#NOTE: Provide the Distro Name as the input for this script -# it will use the general -Linux template if a specific template is not available for that distro - -DISTRO=${1} -#Only perform the change if a distro-specific file is available -if [ -r LuminaOS-${DISTRO}.cpp ]; then - sed -i "s/LuminaOS-Linux.cpp/LuminaOS-${DISTRO}.cpp/" Makefile -fi |