소스 검색

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 년 전
부모
커밋
8e60d18f5b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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