diff --git a/ChangeLog b/ChangeLog index aa795a473..f2db6a70e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-01-26 Adam Fedor + + * rules.make: Revert previous change of parens around tmp. + 2000-01-22 Manuel Guesdon * gswapp.make and gswbundle.make: tar options changed diff --git a/names.make b/names.make index 3d653fd30..0e543baea 100644 --- a/names.make +++ b/names.make @@ -24,7 +24,8 @@ ifneq ($(internal_names_clean), yes) ifeq ($(GNUSTEP_HOST),) - GNUSTEP_HOST := $(shell (cd /tmp; $(CONFIG_SUB_SCRIPT) $(CONFIG_GUESS_SCRIPT))) + GNUSTEP_HOST_GUESS := $(shell (cd /tmp; $(CONFIG_GUESS_SCRIPT))) + GNUSTEP_HOST := $(shell (cd /tmp; $(CONFIG_SUB_SCRIPT) $(CONFIG_HOST_GUESS))) GNUSTEP_HOST_CPU := $(shell (cd /tmp; $(CONFIG_CPU_SCRIPT) $(GNUSTEP_HOST))) GNUSTEP_HOST_VENDOR := $(shell (cd /tmp; $(CONFIG_VENDOR_SCRIPT) $(GNUSTEP_HOST))) GNUSTEP_HOST_OS := $(shell (cd /tmp; $(CONFIG_OS_SCRIPT) $(GNUSTEP_HOST))) diff --git a/rules.make b/rules.make index 82afc56c0..f44e40985 100644 --- a/rules.make +++ b/rules.make @@ -183,8 +183,8 @@ $(JAVA_OBJ_PREFIX)%.class : %.java %.build: @(echo Making $(OPERATION) for $(TARGET_TYPE) $*...; \ tmp="$($*_SUBPROJECTS)"; \ - if test "x$(tmp)" != x ; then \ - for f in $tmp; do \ + if test "x$$tmp" != x ; then \ + for f in $$tmp; do \ mf=$(MAKEFILE_NAME); \ if [ ! -f $$f/$$mf -a -f $$f/Makefile ]; then \ mf=Makefile; \