mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Fix by Jonathon Gapen
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@5389 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
579575b266
commit
612657cbb1
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Tue Dec 7 5:24:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
* rules.make: Escape some dollar signs - patch by Jonathon Gapen
|
||||
for an earlier fix somehow reverted.
|
||||
|
||||
1999-12-02 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* GNUstep.csh.in: Run GNUSTEP_HOST through config.sub to get correct
|
||||
|
|
|
@ -182,8 +182,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; \
|
||||
|
|
Loading…
Reference in a new issue