[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[lmi-commits] [lmi] odd/source_script_in_makefile 23a86bd 5/8: Actually
From: |
Greg Chicares |
Subject: |
[lmi-commits] [lmi] odd/source_script_in_makefile 23a86bd 5/8: Actually perform some work in the script |
Date: |
Fri, 17 May 2019 21:31:38 -0400 (EDT) |
branch: odd/source_script_in_makefile
commit 23a86bdf2495f01a26e6aa5758e8978f0fd13dc3
Author: Gregory W. Chicares <address@hidden>
Commit: Gregory W. Chicares <address@hidden>
Actually perform some work in the script
This ensures that routine testing covers the intended use case.
---
parent.make | 4 ++--
set.sh | 7 +++++++
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/parent.make b/parent.make
index b9756ba..df0414d 100644
--- a/parent.make
+++ b/parent.make
@@ -7,8 +7,8 @@
# then writes 'make' assignments like "export foo := bar"
# for each desired environment variable
# To test:
-# $export LMI_IN=Russia; LANG=ru_RU make -f parent.make all
-# $export LMI_IN=Mongolia; LANG=mn_MN make -f parent.make all
+# $export LMI_IN=Russia; make -f parent.make all
+# $export LMI_IN=Mongolia; make -f parent.make all
# and check what appears on stdout.
export LMI_ENV_FILE := env_$(shell date -u +'%s_%N').eraseme
diff --git a/set.sh b/set.sh
index fa8df6c..8e944d0 100755
--- a/set.sh
+++ b/set.sh
@@ -10,6 +10,13 @@ echo "LMI_OUT1 entering 'set.sh': $LMI_OUT1"
echo "LMI_OUT2 entering 'set.sh': $LMI_OUT2"
export LMI_OUT1="$LMI_IN"
export LMI_OUT2="$LANG"
+
+case "$LMI_IN" in
+ (Mongolia) LMI_OUT2="mn_MN" ;;
+ (Russia) LMI_OUT2="ru_RU" ;;
+ (*) ;;
+esac
+
echo "LMI_OUT1 leaving 'set.sh': $LMI_OUT1"
echo "LMI_OUT2 leaving 'set.sh': $LMI_OUT2"
{
- [lmi-commits] [lmi] odd/source_script_in_makefile updated (929fccb -> dcfc8bb), Greg Chicares, 2019/05/17
- [lmi-commits] [lmi] odd/source_script_in_makefile fc9727f 1/8: Construct a unique temporary filename to avoid collisions, Greg Chicares, 2019/05/17
- [lmi-commits] [lmi] odd/source_script_in_makefile 3722813 3/8: Resolve an open issue, Greg Chicares, 2019/05/17
- [lmi-commits] [lmi] odd/source_script_in_makefile 2b6d26d 6/8: Don't write env file if its name is empty or unset, Greg Chicares, 2019/05/17
- [lmi-commits] [lmi] odd/source_script_in_makefile 20d830d 4/8: Name temporary environment-variables file OAOO, Greg Chicares, 2019/05/17
- [lmi-commits] [lmi] odd/source_script_in_makefile 2bf1d5d 7/8: Remove duplicated target name; improve documentation, Greg Chicares, 2019/05/17
- [lmi-commits] [lmi] odd/source_script_in_makefile dcfc8bb 8/8: Improve and compress output trace, Greg Chicares, 2019/05/17
- [lmi-commits] [lmi] odd/source_script_in_makefile 42d1373 2/8: Remove obsolete commentary, Greg Chicares, 2019/05/17
- [lmi-commits] [lmi] odd/source_script_in_makefile 23a86bd 5/8: Actually perform some work in the script,
Greg Chicares <=