[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[lmi-commits] [lmi] odd/multiarch ec73fc6 11/16: Explicitly set $PERFORM
From: |
Greg Chicares |
Subject: |
[lmi-commits] [lmi] odd/multiarch ec73fc6 11/16: Explicitly set $PERFORM even if it should be empty |
Date: |
Wed, 10 Apr 2019 22:15:08 -0400 (EDT) |
branch: odd/multiarch
commit ec73fc6372bd70c149694507c690ce0bd9679561
Author: Gregory W. Chicares <address@hidden>
Commit: Gregory W. Chicares <address@hidden>
Explicitly set $PERFORM even if it should be empty
If $PERFORM previously had a value, and that value is no longer wanted,
then it should be reset to empty.
The same reasoning does not apply to $WINEPATH, because
WINEPATH="whatever" apt-get update
is harmless, whereas
$PERFORM apt-get update
must not expand to 'wine apt-get update'.
---
set_arch.sh | 3 +++
1 file changed, 3 insertions(+)
diff --git a/set_arch.sh b/set_arch.sh
index f4f305e..577a5f7 100755
--- a/set_arch.sh
+++ b/set_arch.sh
@@ -96,6 +96,9 @@ case "$LMI_BUILD" in
export WINEPATH="$w0;$w1;$w2"
export PERFORM="wine"
;;
+ (*)
+ export PERFORM
+ ;;
esac
# export DO="PATH=$PATH WINEPATH=$WINEPATH $PERFORM"
- [lmi-commits] [lmi] odd/multiarch 60db190 01/16: Restore whitespace concinnity, (continued)
- [lmi-commits] [lmi] odd/multiarch 60db190 01/16: Restore whitespace concinnity, Greg Chicares, 2019/04/10
- [lmi-commits] [lmi] odd/multiarch daee5d2 06/16: Remove commentary that is no longer useful, Greg Chicares, 2019/04/10
- [lmi-commits] [lmi] odd/multiarch 354d7ce 07/16: Remove redundant extra 'gcc' in wx 'vendor' string, Greg Chicares, 2019/04/10
- [lmi-commits] [lmi] odd/multiarch 3b7638d 12/16: Add a more radical alternative to 'clobber', Greg Chicares, 2019/04/10
- [lmi-commits] [lmi] odd/multiarch 923023d 09/16: Use 'set_arch.sh' instead of commented-out blocks of code, Greg Chicares, 2019/04/10
- [lmi-commits] [lmi] odd/multiarch 943d5b8 14/16: Install surrogates for proprietary graphics, Greg Chicares, 2019/04/10
- [lmi-commits] [lmi] odd/multiarch 341f8c5 08/16: Move a documentation stanza, Greg Chicares, 2019/04/10
- [lmi-commits] [lmi] odd/multiarch 70cf4ce 13/16: Insert $LMI_HOST into old '/opt/lmi/bin', Greg Chicares, 2019/04/10
- [lmi-commits] [lmi] odd/multiarch d435a94 15/16: Work around a boost problem with gcc-8.x, Greg Chicares, 2019/04/10
- [lmi-commits] [lmi] odd/multiarch 11efcd0 16/16: Rewrite command assuming '/opt/lmi/bin/' no longer exists, Greg Chicares, 2019/04/10
- [lmi-commits] [lmi] odd/multiarch ec73fc6 11/16: Explicitly set $PERFORM even if it should be empty,
Greg Chicares <=