diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-02-17 14:19:21 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-02-17 14:19:21 +0000 |
commit | 8e60d18f5bfa24ba36f28443fef21caccfcebc02 (patch) | |
tree | e0a5026ccfebfd6ce900ad471fa6c651306e21f5 | |
parent | ace65817746f24ad4c4d9f0cebce3142c21f9fc9 (diff) |
Patch from Stefan Allius
And at last I fixed a warning in test's Makefile. (ldso was first
added to the ALL_SUBDIRS variable in line 25):
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 39bd21d18..1c7af473f 100644 --- a/test/Makefile +++ b/test/Makefile @@ -52,7 +52,7 @@ subdirs_clean: $(patsubst %, _dirclean_%, $(ALL_SUBDIRS)) $(patsubst %, _dir_%, $(DIRS)) : dummy $(MAKE) -C $(patsubst _dir_%, %, $@) -$(patsubst %, _dirclean_%, $(ALL_SUBDIRS) ldso) : dummy +$(patsubst %, _dirclean_%, $(ALL_SUBDIRS)) : dummy $(MAKE) -C $(patsubst _dirclean_%, %, $@) clean .PHONY: dummy |