diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-12-23 13:02:52 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:47:41 -0500 |
commit | 1ac5c35ed9bf5f557b8f42eee9c392af353430fe (patch) | |
tree | 7b80f946fc3ad04e8050d8398af21ac254f3b44a /source4/torture | |
parent | 69a694d7ba3a8cd90445838e8a3f7d409e55fe24 (diff) | |
download | samba-1ac5c35ed9bf5f557b8f42eee9c392af353430fe.tar.gz samba-1ac5c35ed9bf5f557b8f42eee9c392af353430fe.tar.xz samba-1ac5c35ed9bf5f557b8f42eee9c392af353430fe.zip |
r12450: Move generation of proto and full object lists to makefile.pm. 'make' now
handles expanding the protoheader object list, rather then the build system,
which makes the makefile quite a bit shorter.
(This used to be commit a4088ccc704f1338c040c53596ff606cc1651d03)
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/config.mk b/source4/torture/config.mk index a19d1c5b4bb..70e41467c7f 100644 --- a/source4/torture/config.mk +++ b/source4/torture/config.mk @@ -280,6 +280,6 @@ gcov: CFLAGS="$(CFLAGS) $(GCOV_FLAGS)" \ LD_FLAGS="$(LD_FLAGS) $(GCOV_FLAGS)" \ LIBS="$(LIBS) $(GCOV_LIBS)" - for I in $(sort $(dir $(_ALL_OBJS_OBJ_LIST))); \ + for I in $(sort $(dir $(ALL_OBJS))); \ do $(GCOV) -p -o $$I $$I/*.c; \ done |