diff options
| author | djcb <djcb@djcbsoftware.nl> | 2012-07-20 11:56:07 +0300 |
|---|---|---|
| committer | djcb <djcb@djcbsoftware.nl> | 2012-07-20 11:56:07 +0300 |
| commit | 529aefbb22dd9c6fd9aa3af2969d687c6329f4d9 (patch) | |
| tree | 6bc7bf09dae09b559fb7080c76e18791b0e6b012 /gtest.mk | |
| parent | 5d40728a0aef5c7f99bd5f6f7a74c56ad8baf703 (diff) | |
* gtest.mk: fix for magical cd
Diffstat (limited to 'gtest.mk')
| -rw-r--r-- | gtest.mk | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -29,8 +29,7 @@ test: all $(TEST_PROGS) test -z "$(SUBDIRS)" || \ for subdir in $(SUBDIRS); do \ test "$$subdir" = "." || \ - (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$? ; \ + (cd ./$$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$? ; \ done .PHONY: test gprof - |
