diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2012-12-03 14:25:25 -0800 |
---|---|---|
committer | Simon Horman <horms@verge.net.au> | 2012-12-04 09:07:34 +0900 |
commit | 1e91e0a30f2236e070b5d1fb01b2b437993d001d (patch) | |
tree | d72f1bc25caf599c85dd5a313f0dac360385e96e /Makefile.in | |
parent | 66980b22cd514510c31f524ec39c03f46929b329 (diff) |
kexec: Teach configure to find the strip binary.
For some reason my version of the Makefile generated by configure
included the line STRIP=strp. Rerunning configure from a fresh slate
did not regenerate that line so I don't know how it got there. So add
the code to Makefile.in and configure.ac to autodetect the strip binary.
This is needed so that we can remove from purgatory all of the
relocations to sections that are not needed at runtime, by stripping
out those sections.
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
[horms@verge.net.au: Omitted white-space only change to
purgatory/arch/x86_64/Makefile]
Signed-off-by: Simon Horman <horms@verge.net.au>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 97405a2..99b4bb3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -64,6 +64,7 @@ SED = @SED@ FIND = @FIND@ XARGS = @XARGS@ DIRNAME = @DIRNAME@ +STRIP = @STRIP@ pkgdatadir = $(datadir)/$(PACKAGE_NAME) |