/usr/share/aclocal-1.16
NameSizeModeActions
internal/-0755rm
amversion.m416170644editdlrm
ar-lib.m420660644editdlrm
as.m47670644editdlrm
auxdir.m424070644editdlrm
cond-if.m410300644editdlrm
cond.m410360644editdlrm
depend.m472810644editdlrm
depout.m426370644editdlrm
dmalloc.m49060644editdlrm
extra-recurs.m47380644editdlrm
gcj.m46490644editdlrm
init.m480320644editdlrm
install-sh.m46810644editdlrm
lead-dot.m46410644editdlrm
lex.m46890644editdlrm
lispdir.m421520644editdlrm
maintainer.m416560644editdlrm
make.m414340644editdlrm
missing.m411550644editdlrm
mkdirp.m413490644editdlrm
obsolete.m410080644editdlrm
options.m410900644editdlrm
prog-cc-c-o.m416910644editdlrm
python.m494160644editdlrm
runlog.m47180644editdlrm
sanity.m426460644editdlrm
silent.m419110644editdlrm
strip.m413920644editdlrm
substnot.m46750644editdlrm
tar.m444710644editdlrm
upc.m48360644editdlrm
vala.m416550644editdlrm
Edit: /usr/share/aclocal-1.16/strip.m4 (1392B)
## -*- Autoconf -*- # Copyright (C) 2001-2018 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])])