diff options
-rw-r--r-- | .file-metadata | bin | 6239 -> 6187 bytes | |||
-rwxr-xr-x | project | 2 | ||||
-rw-r--r-- | reproduce/analysis/make/initialize.mk | 6 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.file-metadata b/.file-metadata Binary files differindex 1e4b3c5..cef42f3 100644 --- a/.file-metadata +++ b/.file-metadata @@ -265,7 +265,7 @@ EOF # Remove all existing environment variables (with `env -i') and # only use some pre-defined environment variables, then build the # project. - envmake=".local/bin/env -i HOME= sys-rm=$(which rm) $gopt" + envmake=".local/bin/env -i HOME=$bdir sys_rm=$(which rm) $gopt" envmake="$envmake .local/bin/make -f reproduce/analysis/make/top.mk" if ! [ x"$debug" = x ]; then envmake="$envmake --debug=$debug"; fi diff --git a/reproduce/analysis/make/initialize.mk b/reproduce/analysis/make/initialize.mk index f8a09e6..bf79c94 100644 --- a/reproduce/analysis/make/initialize.mk +++ b/reproduce/analysis/make/initialize.mk @@ -200,9 +200,9 @@ distclean: clean # We'll be deleting the built environent programs and just need the # `rm' program. So for this recipe, we'll use the host system's # `rm', not our own. - $$sys-rm -rf $(BDIR) - $$sys-rm -f Makefile .gnuastro .local .build - $$sys-rm -f $(pconfdir)/LOCAL.mk $(gconfdir)/gnuastro-local.conf + $$sys_rm -rf $(BDIR) + $$sys_rm -f Makefile .gnuastro .local .build + $$sys_rm -f $(pconfdir)/LOCAL.mk $(gconfdir)/gnuastro-local.conf |