This repository has been archived on 2024-08-07. You can view files and clone it, but cannot push or open issues/pull-requests.
2015-06-26 21:01:43 +00:00
|
|
|
By default 'mutt' embeds configure flags and the output of 'gcc -v',
|
|
|
|
which contains the store file name of Bash and GCC. This patch makes
|
|
|
|
sure we don't embed a reference to these in 'mutt'.
|
|
|
|
|
2020-11-25 18:18:15 +00:00
|
|
|
diff --git a/txt2c.sh b/txt2c.sh
|
|
|
|
index f634bb9..53845cf 100755
|
|
|
|
--- a/txt2c.sh
|
|
|
|
+++ b/txt2c.sh
|
2015-06-26 21:01:43 +00:00
|
|
|
@@ -21,6 +21,8 @@ txt2c_fallback () {
|
|
|
|
echo ";"
|
|
|
|
}
|
|
|
|
|
|
|
|
+echo "unsigned char $1[] = \"value of '$1' not kept\";"
|
|
|
|
+exit 0
|
2020-11-25 18:18:15 +00:00
|
|
|
if ./txt2c test </dev/null >/dev/null 2>&1; then
|
|
|
|
./txt2c "$1"
|
|
|
|
else
|