Skip to content
Snippets Groups Projects
Commit a698d9cd authored by Christian Engwer's avatar Christian Engwer
Browse files

* fix time command for build and lib mode

[[Imported from SVN: r5761]]
parent d0ed820d
No related branches found
No related tags found
No related merge requests found
......@@ -51,14 +51,14 @@ check-log-sources-am:
check-log-libs-am:
$(LOG_SET_OPTIONS); \
for lib in $(LTLIBRARIES); do \
$(LOG_TIMING) $(MAKE) $$lib > $(LOG_FILE) 2>&1; \
$(LOG_TIMING) ($(MAKE) $$lib) > $(LOG_FILE) 2>&1; \
$(LOG_STORE) "lib" "$$lib" "$$path"; \
done;
check-log-build-am:
$(LOG_SET_OPTIONS); \
for target in $(check_PROGRAMS) $(PROGRAMS); do \
$(LOG_TIMING) $(MAKE) $$target > $(LOG_FILE) 2>&1; \
$(LOG_TIMING) ($(MAKE) $$target) > $(LOG_FILE) 2>&1; \
$(LOG_STORE) "build" "$$target" "$$path"; \
done;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment