Skip to content

Commit

Permalink
Revert change
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@5873 72102866-910b-0410-8b05-ffd578937521
  • Loading branch information
afedor committed Jan 26, 2000
1 parent 8f62726 commit 183010c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2000-01-26 Adam Fedor <fedor@gnu.org>

* rules.make: Revert previous change of parens around tmp.

2000-01-22 Manuel Guesdon <mguesdon@sbuilders.com>

* gswapp.make and gswbundle.make: tar options changed
Expand Down
3 changes: 2 additions & 1 deletion names.make
Original file line number Diff line number Diff line change
Expand Up @@ -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)))
Expand Down
4 changes: 2 additions & 2 deletions rules.make
Original file line number Diff line number Diff line change
Expand Up @@ -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; \
Expand Down

0 comments on commit 183010c

Please sign in to comment.