diff options
author | DJ Delorie <dj@redhat.com> | 2018-08-27 16:31:33 -0400 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2018-08-27 16:31:33 -0400 |
commit | 86de0499c3c624741bbe36927721a0cadd12e146 (patch) | |
tree | 73c64ea2cf5799a43ab8e586ccb1a78bddd39d6a | |
parent | c3ab211099d304542a0ccfd8f5b743c12ac5bad9 (diff) | |
download | glibc-86de0499c3c624741bbe36927721a0cadd12e146.zip glibc-86de0499c3c624741bbe36927721a0cadd12e146.tar.gz glibc-86de0499c3c624741bbe36927721a0cadd12e146.tar.bz2 |
links-dso-program: Fix build-programs=no build case.
* support/Makefile (others): Don't list programs explicitly as a
dependency of "others".
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | support/Makefile | 10 |
2 files changed, 5 insertions, 10 deletions
@@ -1,3 +1,8 @@ +2018-08-27 DJ Delorie <dj@redhat.com> + + * support/Makefile (others): Don't list programs explicitly as a + dependency of "others". + 2018-08-27 Joseph Myers <joseph@codesourcery.com> * sysdeps/generic/math-tests-trap-force.h: New file. diff --git a/support/Makefile b/support/Makefile index 0ed0021..b528f53 100644 --- a/support/Makefile +++ b/support/Makefile @@ -168,16 +168,6 @@ LINKS_DSO_PROGRAM = links-dso-program LDLIBS-links-dso-program = -lstdc++ -lgcc -lgcc_s $(libunwind) endif -others: \ - $(objpfx)test-container \ - $(objpfx)shell-container \ - $(objpfx)echo-container \ - $(objpfx)true-container \ - $(objpfx)$(LINKS_DSO_PROGRAM) - -ifeq ($(build-programs),yes) -endif - LDLIBS-test-container = $(libsupport) others += test-container |