diff options
author | Phil Pennock <pdp@exim.org> | 2011-01-24 16:40:38 -0500 |
---|---|---|
committer | Phil Pennock <pdp@exim.org> | 2011-01-24 16:40:38 -0500 |
commit | 88d5edb00796448347da8544088b0db1f9b61ddf (patch) | |
tree | ec81d5b83b469102424bda8d1609ca246f52262d | |
parent | 4050a04413dda769b60118e3bbb518639be6828a (diff) |
Bug-fix the xpg4 Solaris logic.exim-4_74
Should not code at 9am when still awake then.
Should sanity-review such code changes before submitting (after sleep).
Should s,/usr/xpg4/bin/sh,/bin/bash, as a convenient test to confirm
what I suspected. But should do so pre-submit.
Doh.
-rwxr-xr-x | src/scripts/lookups-Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scripts/lookups-Makefile b/src/scripts/lookups-Makefile index 959d49e11..2c4dc96b8 100755 --- a/src/scripts/lookups-Makefile +++ b/src/scripts/lookups-Makefile @@ -2,13 +2,13 @@ # We turn the configure-built build-$foo/lookups/Makefile.predynamic into Makefile -if [ -x /usr/xpg4/bin/sh ] && [ -z "EXIM_BLOCK_XPG4_LOOP" ] +if [ -x /usr/xpg4/bin/sh ] && [ -z "$EXIM_BLOCK_XPG4_LOOP" ] then EXIM_BLOCK_XPG4_LOOP=yes export EXIM_BLOCK_XPG4_LOOP PATH="/usr/xpg4/bin:$PATH" export PATH - exec /usr/xpg4/bin/sh "$@" + exec /usr/xpg4/bin/sh "$0" "$@" fi input=lookups/Makefile.predynamic |