/usr/share/aclocal-1.11
NameSizeModeActions
amversion.m416430644editdlrm
as.m47990644editdlrm
auxdir.m424380644editdlrm
ccstdc.m49580644editdlrm
cond-if.m410500644editdlrm
cond.m410800644editdlrm
depend.m470660644editdlrm
depout.m431710644editdlrm
dmalloc.m49860644editdlrm
gcj.m46610644editdlrm
header.m44940644editdlrm
init.m453960644editdlrm
install-sh.m46890644editdlrm
lead-dot.m46550644editdlrm
lex.m47320644editdlrm
lispdir.m422440644editdlrm
maintainer.m417570644editdlrm
make.m413670644editdlrm
minuso.m413280644editdlrm
missing.m412070644editdlrm
mkdirp.m410420644editdlrm
multi.m420540644editdlrm
obsol-gt.m44210644editdlrm
obsol-lt.m44230644editdlrm
obsolete.m416090644editdlrm
options.m411400644editdlrm
protos.m48770644editdlrm
python.m484830644editdlrm
regex.m420120644editdlrm
runlog.m47260644editdlrm
sanity.m420600644editdlrm
silent.m410020644editdlrm
strip.m414000644editdlrm
substnot.m46900644editdlrm
tar.m431030644editdlrm
upc.m48320644editdlrm
vala.m410810644editdlrm
Edit: /usr/share/aclocal-1.11/strip.m4 (1400B)
## -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor `install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in `make install-strip', and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be `maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])])