Explorar el Código

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 hace 23 años
padre
commit
8e60d18f5b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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