diff options
author | Graham Leggett <minfrin@apache.org> | 2011-12-19 17:27:13 +0000 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2011-12-19 17:27:13 +0000 |
commit | d488a0a39dc6d63b2ed669fa2f908a610c3d06cc (patch) | |
tree | 25b61e7a67c75e4633d800e88663b14926feddd9 /test | |
parent | 16a2391ce7db0b8edf9baa8a357c68e08115b391 (diff) | |
download | httpd-d488a0a39dc6d63b2ed669fa2f908a610c3d06cc.tar.gz |
Backport:
Distinguish properly between the bindir and sbindir directories when
installing binaries. Previously all binaries were silently installed to
sbindir, whether they were system administration commands or not.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1220867 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 6d83405477..15d404d208 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -3,7 +3,7 @@ # test programs, then "make test" TARGETS = -PROGRAMS = +bin_PROGRAMS = PROGRAM_LDADD = $(EXTRA_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) PROGRAM_DEPENDENCIES = \ @@ -12,7 +12,7 @@ PROGRAM_DEPENDENCIES = \ include $(top_builddir)/build/rules.mk -test: $(PROGRAMS) +test: $(bin_PROGRAMS) # example for building a test proggie # dbu_OBJECTS = dbu.lo |