aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-04-12 07:50:23 -0400
committerKen Moore <moorekou@gmail.com>2016-04-12 07:50:23 -0400
commitbb4adf622d4eaa88385e068afe9ddc7a02949e2b (patch)
treed6392390d5896f9c71c43aa5dd2868a146b44550
parentGet more of the terminal working. Now all the special xterm stuff is getting ... (diff)
downloadlumina-bb4adf622d4eaa88385e068afe9ddc7a02949e2b.tar.gz
lumina-bb4adf622d4eaa88385e068afe9ddc7a02949e2b.tar.bz2
lumina-bb4adf622d4eaa88385e068afe9ddc7a02949e2b.zip
Remove a couple obsolete shell scripts from the liblumina dir. The new qmake build system handles all this automatically now (OS-detect.pri).
-rwxr-xr-xlibLumina/make-global-h.sh7
-rwxr-xr-xlibLumina/make-linux-distro.sh11
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
bgstack15