Browse Source

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):
Eric Andersen 22 years ago
parent
commit
8e60d18f5b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/Makefile

+ 1 - 1
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