diff options
author | Thomas Glanzmann <sithglan@stud.uni-erlangen.de> | 2005-05-22 20:27:28 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-22 11:40:07 -0700 |
commit | ca67f002194cfe00ec349c7d4e2c936e35f8c669 (patch) | |
tree | 39ab9e005ba949f768ad8e88267573dd781aefa5 | |
parent | 2aef5bbae99aeba3551408eae13faea02bf55b67 (diff) | |
download | git-ca67f002194cfe00ec349c7d4e2c936e35f8c669.tar.gz git-ca67f002194cfe00ec349c7d4e2c936e35f8c669.tar.xz |
[PATCH] Makefile: Solaris fix: call $(MAKE) instead of make for subdirectories
Signed-off-by: Thomas Glanzmann <sithglan@stud.uni-erlangen.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -129,11 +129,11 @@ diffcore-pathspec.o : $(LIB_H) diffcore.h diffcore-pickaxe.o : $(LIB_H) diffcore.h test: all - make -C t/ all + $(MAKE) -C t/ all clean: rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE) - make -C Documentation/ clean + $(MAKE) -C Documentation/ clean backup: clean cd .. ; tar czvf dircache.tar.gz dir-cache |