summaryrefslogtreecommitdiff
path: root/src/lib/common.sh.top
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-02-08 16:36:45 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-02-08 16:36:45 -0500
commit7e704d7ac997387341e920e1757c24cac0efe5e9 (patch)
treea9f30eabaaad5496397a91053d3e03bab1ea57e4 /src/lib/common.sh.top
parent7785a72495e3eb0ea826b41720c241f58a15b601 (diff)
Refactor the build system. Avoid recursive make.
This looks like a lot, but more things should "just work". We have `make dist` now!
Diffstat (limited to 'src/lib/common.sh.top')
-rw-r--r--src/lib/common.sh.top25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/lib/common.sh.top b/src/lib/common.sh.top
deleted file mode 100644
index 23bfeb8..0000000
--- a/src/lib/common.sh.top
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/hint/bash
-# This may be included with or without `set -euE`
-
-# This file is included by libremessages.
-# You should probably use libremessages instead of this.
-
-# License: Unspecified
-
-shopt -s extglob
-
-if [[ -z ${_INCLUDE_COMMON_SH:-} ]]; then
-_INCLUDE_COMMON_SH=true
-
-[[ -n ${TEXTDOMAIN:-} ]] || export TEXTDOMAIN='libretools'
-[[ -n ${TEXTDOMAINDIR:-} ]] || export TEXTDOMAINDIR='/usr/share/locale'
-
-if type gettext &>/dev/null; then
- _() { gettext "$@"; }
-else
- _() { echo "$@"; }
-fi
-
-_l() {
- TEXTDOMAIN='librelib' TEXTDOMAINDIR='/usr/share/locale' "$@"
-}