=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== bmake-20200710/PSD.doc/tutorial.ms-2750-assembly-language source file (suffix bmake-20200710/PSD.doc/tutorial.ms:2751:.CW .asm ). bmake-20200710/PSD.doc/tutorial.ms-2752-Each program can be assembled into two versions, one with error-checking ############################################## bmake-20200710/PSD.doc/tutorial.ms-3641-\&.asmec.obj : bmake-20200710/PSD.doc/tutorial.ms:3642: asm -o $(.TARGET) -DDO_ERROR_CHECKING $(.IMPSRC) bmake-20200710/PSD.doc/tutorial.ms-3643-\&.asm.obj : bmake-20200710/PSD.doc/tutorial.ms:3644: asm -o $(.TARGET) $(.IMPSRC) bmake-20200710/PSD.doc/tutorial.ms-3645-.DE ############################################## bmake-20200710/aclocal.m4-9-[dnl first check if header exists and if so, see if it contains PATTERN bmake-20200710/aclocal.m4:10:ac_has_hdr=`echo "ac_cv_header_$1" | sed 'y%./+-%__p_%'` bmake-20200710/aclocal.m4:11:ac_has_it=`echo "ac_cv_header_$1"_$2 | sed 'y%./+-%__p_%'` bmake-20200710/aclocal.m4:12:if eval "test \"`echo x'$'$ac_has_hdr`\" = x"; then bmake-20200710/aclocal.m4-13- AC_CHECK_HEADER($1) bmake-20200710/aclocal.m4-14-fi bmake-20200710/aclocal.m4:15:if eval "test \"`echo '$'$ac_has_hdr`\" = yes"; then bmake-20200710/aclocal.m4:16: ac_x=HAVE_`echo "$1" | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` bmake-20200710/aclocal.m4-17- AC_DEFINE_UNQUOTED($ac_x) ############################################## bmake-20200710/aclocal.m4-22- bmake-20200710/aclocal.m4:23: if eval "test \"`echo '$'$ac_has_it`\" = yes"; then bmake-20200710/aclocal.m4-24- AC_MSG_RESULT(yes) bmake-20200710/aclocal.m4:25: ac_x=HAVE_`echo "$1"_$2 | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` bmake-20200710/aclocal.m4-26- AC_DEFINE_UNQUOTED($ac_x) ############################################## bmake-20200710/bmake.cat1-411- Because while ${a} contains ``1 2 3'' after the loop is executed, bmake-20200710/bmake.cat1:412: ${b} contains ``${j} ${j} ${j}'' which expands to ``3 3 3'' since bmake-20200710/bmake.cat1-413- after the loop completes ${j} contains ``3''. ############################################## bmake-20200710/bmake.cat1-464- Variants of these variables with the punctuation followed immediately by bmake-20200710/bmake.cat1:465: `D' or `F', e.g. `$(@D)', are legacy forms equivalent to using the `:H' bmake-20200710/bmake.cat1-466- and `:T' modifiers. These forms are accepted for compatibility with AT&T ############################################## bmake-20200710/bmake.cat1-475- bmake-20200710/bmake.cat1:476: $ A single dollar sign `$', i.e. `$$' expands to a single bmake-20200710/bmake.cat1-477- dollar sign. ############################################## bmake-20200710/bmake.cat1-946- bmake-20200710/bmake.cat1:947: Here `$_' is used to save the result of the `:S' modifier which is bmake-20200710/bmake.cat1-948- later referenced using the index values from `:range'. ############################################## bmake-20200710/boot-strap-132- bmake-20200710/boot-strap:133:Mydir=`dirname $0` bmake-20200710/boot-strap-134-. "$Mydir/os.sh" ############################################## bmake-20200710/boot-strap-136-/*) ;; bmake-20200710/boot-strap:137:*) Mydir=`cd "$Mydir" && 'pwd'`;; bmake-20200710/boot-strap-138-esac ############################################## bmake-20200710/boot-strap-182- */$HOST_TARGET) bmake-20200710/boot-strap:183: p=`dirname $prefix` bmake-20200710/boot-strap-184- if [ -d $p/share ]; then ############################################## bmake-20200710/boot-strap-218- --prefix) prefix="$2"; shift;; bmake-20200710/boot-strap:219: --prefix=*) prefix=`get_optarg "$1"`;; bmake-20200710/boot-strap:220: --src=*) srcdir=`get_optarg "$1"`;; bmake-20200710/boot-strap:221: --with-mksrc=*|--mksrc=*) mksrc=`get_optarg "$1"`;; bmake-20200710/boot-strap:222: --share=*) share_dir=`get_optarg "$1"`;; bmake-20200710/boot-strap-223- --share) share_dir="$2"; shift;; ############################################## bmake-20200710/boot-strap-231- INSTALL_BIN=$HOST_TARGET/bin;; bmake-20200710/boot-strap:232: --install-destdir=*) INSTALL_DESTDIR=`get_optarg "$1"`;; bmake-20200710/boot-strap:233: --install-prefix=*) INSTALL_PREFIX=`get_optarg "$1"`;; bmake-20200710/boot-strap-234- -DWITH*) INSTALL_ARGS="$INSTALL_ARGS $1";; ############################################## bmake-20200710/boot-strap-240- --*) CONFIGURE_ARGS="$CONFIGURE_ARGS $1";; bmake-20200710/boot-strap:241: *=*) eval "$1"; export `expr "x$1" : "x\\(.[^=]*\\)=.*"`;; bmake-20200710/boot-strap-242- *) break;; ############################################## bmake-20200710/boot-strap-294- ;; bmake-20200710/boot-strap:295: .../*) want=`echo "$1" | sed 's,^.../*,,'`;; bmake-20200710/boot-strap-296- *) want="$1";; ############################################## bmake-20200710/boot-strap-333- bmake-20200710/boot-strap:334:srcdir=`GetDir /bmake make-bootstrap.sh.in "$srcdir" "$2" "$Mydir" ./bmake* "$Mydir"/../bmake*` bmake-20200710/boot-strap-335-[ -d "${srcdir:-/dev/null}" ] || Usage ############################################## bmake-20200710/boot-strap-340-.../*) # find here or above bmake-20200710/boot-strap:341: mksrc=`FindHereOrAbove -C "$Mydir" -s "$mksrc/sys.mk"` bmake-20200710/boot-strap-342- # that found a file bmake-20200710/boot-strap:343: mksrc=`dirname $mksrc` bmake-20200710/boot-strap-344- ;; bmake-20200710/boot-strap-345-*) # guess we want mksrc... bmake-20200710/boot-strap:346: mksrc=`GetDir /mk sys.mk "$mksrc" "$3" ./mk* "$srcdir"/mk* "$srcdir"/../mk*` bmake-20200710/boot-strap-347- [ -d "${mksrc:-/dev/null}" ] || Usage "Use '-m none' to build without mksrc" ############################################## bmake-20200710/boot-strap-363- if [ -d "$1/../share" ]; then bmake-20200710/boot-strap:364: echo `dirname "$1"`/share bmake-20200710/boot-strap-365- return ############################################## bmake-20200710/boot-strap-374-case "$prefix" in bmake-20200710/boot-strap:375:*/host?target) prefix=`echo "$prefix" | sed "s,host.target,${HOST_TARGET},"`;; bmake-20200710/boot-strap-376-esac bmake-20200710/boot-strap-377- bmake-20200710/boot-strap:378:share_dir="${share_dir:-`ShareDir $prefix`}" bmake-20200710/boot-strap-379- ############################################## bmake-20200710/boot-strap-446- ,$HOST_TARGET/bin,*/$HOST_TARGET) bmake-20200710/boot-strap:447: INSTALL_PREFIX=`dirname $prefix` bmake-20200710/boot-strap-448- ;; ############################################## bmake-20200710/boot-strap-459- op_test bmake-20200710/boot-strap:460: MAKE_VERSION=`sed -n '/^_MAKE_VERSION/ { s,.*= *,,;p; }' $srcdir/Makefile` bmake-20200710/boot-strap-461- echo You can install by running: ############################################## bmake-20200710/configure-45-if test -z "$BASH_VERSION$ZSH_VERSION" \ bmake-20200710/configure:46: && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then bmake-20200710/configure-47- as_echo='print -r --' bmake-20200710/configure-48- as_echo_n='print -rn --' bmake-20200710/configure:49:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then bmake-20200710/configure-50- as_echo='printf %s\n' ############################################## bmake-20200710/configure-52-else bmake-20200710/configure:53: if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then bmake-20200710/configure-54- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' ############################################## bmake-20200710/configure-62- expr "X$arg" : "X\\(.*\\)$as_nl"; bmake-20200710/configure:63: arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; bmake-20200710/configure-64- esac; ############################################## bmake-20200710/configure-199- eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && bmake-20200710/configure:200: test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 bmake-20200710/configure-201-test \$(( 1 + 1 )) = 2 || exit 1" ############################################## bmake-20200710/configure-327- case $as_dir in #( bmake-20200710/configure:328: *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( bmake-20200710/configure-329- *) as_qdir=$as_dir;; ############################################## bmake-20200710/configure-400- { bmake-20200710/configure:401: as_val=`expr "$@" || test $? -eq 1` bmake-20200710/configure-402- } ############################################## bmake-20200710/configure-407-# ---------------------------------------- bmake-20200710/configure:408:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are bmake-20200710/configure-409-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the ############################################## bmake-20200710/configure-470- eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && bmake-20200710/configure:471: test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { bmake-20200710/configure-472- # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) ############################################## bmake-20200710/configure-778- case $ac_option in bmake-20200710/configure:779: *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; bmake-20200710/configure-780- *=) ac_optarg= ;; ############################################## bmake-20200710/configure-822- -disable-* | --disable-*) bmake-20200710/configure:823: ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` bmake-20200710/configure-824- # Reject names that are not valid shell variable names. ############################################## bmake-20200710/configure-827- ac_useropt_orig=$ac_useropt bmake-20200710/configure:828: ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` bmake-20200710/configure-829- case $ac_user_opts in ############################################## bmake-20200710/configure-848- -enable-* | --enable-*) bmake-20200710/configure:849: ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` bmake-20200710/configure-850- # Reject names that are not valid shell variable names. ############################################## bmake-20200710/configure-853- ac_useropt_orig=$ac_useropt bmake-20200710/configure:854: ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` bmake-20200710/configure-855- case $ac_user_opts in ############################################## bmake-20200710/configure-1052- -with-* | --with-*) bmake-20200710/configure:1053: ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` bmake-20200710/configure-1054- # Reject names that are not valid shell variable names. ############################################## bmake-20200710/configure-1057- ac_useropt_orig=$ac_useropt bmake-20200710/configure:1058: ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` bmake-20200710/configure-1059- case $ac_user_opts in ############################################## bmake-20200710/configure-1068- -without-* | --without-*) bmake-20200710/configure:1069: ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` bmake-20200710/configure-1070- # Reject names that are not valid shell variable names. ############################################## bmake-20200710/configure-1073- ac_useropt_orig=$ac_useropt bmake-20200710/configure:1074: ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` bmake-20200710/configure-1075- case $ac_user_opts in ############################################## bmake-20200710/configure-1106- *=*) bmake-20200710/configure:1107: ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` bmake-20200710/configure-1108- # Reject names that are not valid shell variable names. ############################################## bmake-20200710/configure-1127-if test -n "$ac_prev"; then bmake-20200710/configure:1128: ac_option=--`echo $ac_prev | sed 's/_/-/g'` bmake-20200710/configure-1129- as_fn_error $? "missing argument to $ac_option" ############################################## bmake-20200710/configure-1149- */ ) bmake-20200710/configure:1150: ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` bmake-20200710/configure-1151- eval $ac_var=\$ac_val;; ############################################## bmake-20200710/configure-1184-ac_ls_di=`ls -di .` && bmake-20200710/configure:1185:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || bmake-20200710/configure-1186- as_fn_error $? "working directory cannot be determined" ############################################## bmake-20200710/configure-1240-case $srcdir in bmake-20200710/configure:1241:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; bmake-20200710/configure-1242-esac ############################################## bmake-20200710/configure-1283-By default, \`make install' will install all the files in bmake-20200710/configure:1284:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify bmake-20200710/configure:1285:an installation prefix other than \`$ac_default_prefix' using \`--prefix', bmake-20200710/configure-1286-for instance \`--prefix=\$HOME'. ############################################## bmake-20200710/configure-1376-*) bmake-20200710/configure:1377: ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` bmake-20200710/configure-1378- # A ".." for each directory in $ac_dir_suffix. bmake-20200710/configure:1379: ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` bmake-20200710/configure-1380- case $ac_top_builddir_sub in ############################################## bmake-20200710/configure-1837- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack bmake-20200710/configure:1838: as_decl_name=`echo $2|sed 's/ *(.*//'` bmake-20200710/configure:1839: as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'` bmake-20200710/configure-1840- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5 ############################################## bmake-20200710/configure-2075- *\'*) bmake-20200710/configure:2076: ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; bmake-20200710/configure-2077- esac ############################################## bmake-20200710/configure-2158- case $ac_val in bmake-20200710/configure:2159: *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; bmake-20200710/configure-2160- esac ############################################## bmake-20200710/configure-2173- case $ac_val in bmake-20200710/configure:2174: *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; bmake-20200710/configure-2175- esac ############################################## bmake-20200710/configure-2293- set,) bmake-20200710/configure:2294: { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 bmake-20200710/configure:2295:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} bmake-20200710/configure-2296- ac_cache_corrupted=: ;; ############################################## bmake-20200710/configure-2304- # differences in whitespace do not lead to failure. bmake-20200710/configure:2305: ac_old_val_w=`echo x $ac_old_val` bmake-20200710/configure:2306: ac_new_val_w=`echo x $ac_new_val` bmake-20200710/configure-2307- if test "$ac_old_val_w" != "$ac_new_val_w"; then ############################################## bmake-20200710/configure-2324- case $ac_new_val in bmake-20200710/configure:2325: *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; bmake-20200710/configure-2326- *) ac_arg=$ac_var=$ac_new_val ;; ############################################## bmake-20200710/configure-2356-/*) ;; bmake-20200710/configure:2357:*) srcdir=`cd $srcdir && pwd`;; bmake-20200710/configure-2358-esac ############################################## bmake-20200710/configure-2793-$as_echo_n "checking whether the C compiler works... " >&6; } bmake-20200710/configure:2794:ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` bmake-20200710/configure-2795- ############################################## bmake-20200710/configure-2837- then :; else bmake-20200710/configure:2838: ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` bmake-20200710/configure-2839- fi ############################################## bmake-20200710/configure-2897- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; bmake-20200710/configure:2898: *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` bmake-20200710/configure-2899- break;; ############################################## bmake-20200710/configure-3006- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; bmake-20200710/configure:3007: *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` bmake-20200710/configure-3008- break;; ############################################## bmake-20200710/configure-3394- # Check for GNU $ac_path_GREP bmake-20200710/configure:3395:case `"$ac_path_GREP" --version 2>&1` in bmake-20200710/configure-3396-*GNU*) ############################################## bmake-20200710/configure-3460- # Check for GNU $ac_path_EGREP bmake-20200710/configure:3461:case `"$ac_path_EGREP" --version 2>&1` in bmake-20200710/configure-3462-*GNU*) ############################################## bmake-20200710/configure-3621-do : bmake-20200710/configure:3622: as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` bmake-20200710/configure-3623-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default ############################################## bmake-20200710/configure-3626- cat >>confdefs.h <<_ACEOF bmake-20200710/configure:3627:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 bmake-20200710/configure-3628-_ACEOF ############################################## bmake-20200710/configure-4589-for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do bmake-20200710/configure:4590: as_ac_Header=`$as_echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh` bmake-20200710/configure-4591-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_hdr that defines DIR" >&5 ############################################## bmake-20200710/configure-4621- cat >>confdefs.h <<_ACEOF bmake-20200710/configure:4622:#define `$as_echo "HAVE_$ac_hdr" | $as_tr_cpp` 1 bmake-20200710/configure-4623-_ACEOF ############################################## bmake-20200710/configure-4791-do : bmake-20200710/configure:4792: as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` bmake-20200710/configure-4793-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ############################################## bmake-20200710/configure-4795- cat >>confdefs.h <<_ACEOF bmake-20200710/configure:4796:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 bmake-20200710/configure-4797-_ACEOF ############################################## bmake-20200710/configure-4818-else bmake-20200710/configure:4819: echo no >&6; CPPFLAGS="${CPPFLAGS} -I`cd ${srcdir}/missing && pwd` -DNEED_HOST_CDEFS_H" bmake-20200710/configure-4820-fi ############################################## bmake-20200710/configure-4823-else bmake-20200710/configure:4824: CPPFLAGS="${CPPFLAGS} -I`cd ${srcdir}/missing && pwd`" bmake-20200710/configure-4825-fi ############################################## bmake-20200710/configure-5371-do : bmake-20200710/configure:5372: as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` bmake-20200710/configure-5373-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ############################################## bmake-20200710/configure-5375- cat >>confdefs.h <<_ACEOF bmake-20200710/configure:5376:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 bmake-20200710/configure-5377-_ACEOF ############################################## bmake-20200710/configure-5685-do : bmake-20200710/configure:5686: as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` bmake-20200710/configure-5687-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ############################################## bmake-20200710/configure-5689- cat >>confdefs.h <<_ACEOF bmake-20200710/configure:5690:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 bmake-20200710/configure-5691-_ACEOF ############################################## bmake-20200710/configure-6016-fi bmake-20200710/configure:6017:machine=${machine:-`$srcdir/machine.sh`} bmake-20200710/configure:6018:machine_arch=${machine_arch:-`$srcdir/machine.sh arch`} bmake-20200710/configure-6019-echo "defaults: MACHINE=$machine, MACHINE_ARCH=$machine_arch" 1>&6 ############################################## bmake-20200710/configure-6025-no) ;; bmake-20200710/configure:6026:generic) machine=`$srcdir/machine.sh`;; bmake-20200710/configure-6027-*) machine=$with_machine;; ############################################## bmake-20200710/configure-6115- bmake-20200710/configure:6116:srcdir=`cd $srcdir && pwd` bmake-20200710/configure-6117-for mksrc in $mksrc $srcdir/mk $srcdir/../mk mk ############################################## bmake-20200710/configure-6119- test -s $mksrc/install-mk || continue bmake-20200710/configure:6120: mksrc=`cd $mksrc && pwd` bmake-20200710/configure-6121- break bmake-20200710/configure-6122-done bmake-20200710/configure:6123:mksrc=`echo $mksrc | sed "s,$srcdir,\\\${srcdir},"` bmake-20200710/configure-6124-echo "Using: MKSRC=$mksrc" 1>&6 ############################################## bmake-20200710/configure-6258- ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' bmake-20200710/configure:6259: ac_i=`$as_echo "$ac_i" | sed "$ac_script"` bmake-20200710/configure-6260- # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR ############################################## bmake-20200710/configure-6326-if test -z "$BASH_VERSION$ZSH_VERSION" \ bmake-20200710/configure:6327: && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then bmake-20200710/configure-6328- as_echo='print -r --' bmake-20200710/configure-6329- as_echo_n='print -rn --' bmake-20200710/configure:6330:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then bmake-20200710/configure-6331- as_echo='printf %s\n' ############################################## bmake-20200710/configure-6333-else bmake-20200710/configure:6334: if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then bmake-20200710/configure-6335- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' ############################################## bmake-20200710/configure-6343- expr "X$arg" : "X\\(.*\\)$as_nl"; bmake-20200710/configure:6344: arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; bmake-20200710/configure-6345- esac; ############################################## bmake-20200710/configure-6420-# ---------------------------------------- bmake-20200710/configure:6421:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are bmake-20200710/configure-6422-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the ############################################## bmake-20200710/configure-6492- { bmake-20200710/configure:6493: as_val=`expr "$@" || test $? -eq 1` bmake-20200710/configure-6494- } ############################################## bmake-20200710/configure-6596- case $as_dir in #( bmake-20200710/configure:6597: *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( bmake-20200710/configure-6598- *) as_qdir=$as_dir;; ############################################## bmake-20200710/configure-6727-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 bmake-20200710/configure:6728:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" bmake-20200710/configure-6729-ac_cs_version="\\ ############################################## bmake-20200710/configure-6750- --*=?*) bmake-20200710/configure:6751: ac_option=`expr "X$1" : 'X\([^=]*\)='` bmake-20200710/configure:6752: ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` bmake-20200710/configure-6753- ac_shift=: ############################################## bmake-20200710/configure-6755- --*=) bmake-20200710/configure:6756: ac_option=`expr "X$1" : 'X\([^=]*\)='` bmake-20200710/configure-6757- ac_optarg= ############################################## bmake-20200710/configure-6779- case $ac_optarg in bmake-20200710/configure:6780: *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; bmake-20200710/configure-6781- '') as_fn_error $? "missing file argument" ;; ############################################## bmake-20200710/configure-6787- case $ac_optarg in bmake-20200710/configure:6788: *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; bmake-20200710/configure-6789- esac ############################################## bmake-20200710/configure-6908-fi bmake-20200710/configure:6909:ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` bmake-20200710/configure-6910-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ############################################## bmake-20200710/configure-6925- as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 bmake-20200710/configure:6926:ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` bmake-20200710/configure-6927-ac_delim='%!_!# ' ############################################## bmake-20200710/configure-6931- bmake-20200710/configure:6932: ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` bmake-20200710/configure-6933- if test $ac_delim_n = $ac_delim_num; then ############################################## bmake-20200710/configure-7069-for ac_last_try in false false :; do bmake-20200710/configure:7070: ac_tt=`sed -n "/$ac_delim/p" confdefs.h` bmake-20200710/configure-7071- if test -z "$ac_tt"; then ############################################## bmake-20200710/configure-7201- esac bmake-20200710/configure:7202: case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac bmake-20200710/configure-7203- as_fn_append ac_file_inputs " '$ac_f'" ############################################## bmake-20200710/configure-7260-*) bmake-20200710/configure:7261: ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` bmake-20200710/configure-7262- # A ".." for each directory in $ac_dir_suffix. bmake-20200710/configure:7263: ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` bmake-20200710/configure-7264- case $ac_top_builddir_sub in ############################################## bmake-20200710/configure-7316-/@mandir@/p' bmake-20200710/configure:7317:case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in bmake-20200710/configure-7318-*datarootdir*) ac_datarootdir_seen=yes;; ############################################## bmake-20200710/configure-7333- bmake-20200710/configure:7334:# Neutralize VPATH when `$srcdir' = `.'. bmake-20200710/configure-7335-# Shell code in configure.ac might set extrasub. ############################################## bmake-20200710/configure-7360-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && bmake-20200710/configure:7361: { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && bmake-20200710/configure-7362- { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ ############################################## bmake-20200710/configure.in-13-/*) ;; bmake-20200710/configure.in:14:*) srcdir=`cd $srcdir && pwd`;; bmake-20200710/configure.in-15-esac ############################################## bmake-20200710/configure.in-172-echo yes >&6, bmake-20200710/configure.in:173:echo no >&6; CPPFLAGS="${CPPFLAGS} -I`cd ${srcdir}/missing && pwd` -DNEED_HOST_CDEFS_H"), bmake-20200710/configure.in:174:CPPFLAGS="${CPPFLAGS} -I`cd ${srcdir}/missing && pwd`") bmake-20200710/configure.in-175- ############################################## bmake-20200710/configure.in-282-fi bmake-20200710/configure.in:283:machine=${machine:-`$srcdir/machine.sh`} bmake-20200710/configure.in:284:machine_arch=${machine_arch:-`$srcdir/machine.sh arch`} bmake-20200710/configure.in-285-echo "defaults: MACHINE=$machine, MACHINE_ARCH=$machine_arch" 1>&6 ############################################## bmake-20200710/configure.in-293-no) ;; bmake-20200710/configure.in:294:generic) machine=`$srcdir/machine.sh`;; bmake-20200710/configure.in-295-*) machine=$with_machine;; ############################################## bmake-20200710/configure.in-386-dnl bmake-20200710/configure.in:387:srcdir=`cd $srcdir && pwd` bmake-20200710/configure.in-388-for mksrc in $mksrc $srcdir/mk $srcdir/../mk mk ############################################## bmake-20200710/configure.in-390- test -s $mksrc/install-mk || continue bmake-20200710/configure.in:391: mksrc=`cd $mksrc && pwd` bmake-20200710/configure.in-392- break bmake-20200710/configure.in-393-done bmake-20200710/configure.in:394:mksrc=`echo $mksrc | sed "s,$srcdir,\\\${srcdir},"` bmake-20200710/configure.in-395-echo "Using: MKSRC=$mksrc" 1>&6 ############################################## bmake-20200710/find_lib.sh-5-do bmake-20200710/find_lib.sh:6: found=`nm $lib | egrep "$re"` bmake-20200710/find_lib.sh-7- case "$found" in ############################################## bmake-20200710/install-sh-70- bmake-20200710/install-sh:71:set -- `getopt B:bpxCNcsdo:g:m:i:f: $*` bmake-20200710/install-sh-72- bmake-20200710/install-sh:73:Mydir=`dirname $0` bmake-20200710/install-sh-74-[ -s $Mydir/.installrc ] && . $Mydir/.installrc ############################################## bmake-20200710/install-sh-110-Newer() { bmake-20200710/install-sh:111: n=`/bin/ls -t$LS1 $* 2>/dev/null | head -1` bmake-20200710/install-sh-112- [ $1 = $n ] ############################################## bmake-20200710/install-sh-189-do bmake-20200710/install-sh:190: b=`basename $f` bmake-20200710/install-sh-191- if [ -d $dest ]; then ############################################## bmake-20200710/machine.sh-21-OSREL=`uname -r` bmake-20200710/machine.sh:22:OSMAJOR=`IFS=.; set $OSREL; echo $1` bmake-20200710/machine.sh-23-machine=`uname -p 2>/dev/null || uname -m` ############################################## bmake-20200710/machine.sh-38- # in conjunction with the for loop. bmake-20200710/machine.sh:39: _dirs=`IFS=:; echo ${2:-$PATH}` bmake-20200710/machine.sh-40- for d in $_dirs ############################################## bmake-20200710/machine.sh-54- MACHINE=$OS$OSMAJOR.$machine bmake-20200710/machine.sh:55: arch=`Which arch /usr/bin:/usr/ucb:$PATH` bmake-20200710/machine.sh:56: MACHINE_ARCH=`$arch -s`; bmake-20200710/machine.sh-57- ;; ############################################## bmake-20200710/machine.sh-65-SunOS) bmake-20200710/machine.sh:66: arch=`Which arch /usr/bin:/usr/ucb:$PATH` bmake-20200710/machine.sh:67: test "$arch" && machine_arch=`$arch` bmake-20200710/machine.sh-68- ############################################## bmake-20200710/machine.sh-74-HP-UX) bmake-20200710/machine.sh:75: MACHINE_ARCH=`IFS="/-."; set $machine; echo $1` bmake-20200710/machine.sh-76- ;; ############################################## bmake-20200710/machine.sh-82- OSREL=`uname -v` bmake-20200710/machine.sh:83: OSMAJOR=`IFS=.; set $OSREL; echo $1` bmake-20200710/machine.sh-84- MACHINE_ARCH=`uname -m` ############################################## bmake-20200710/make-bootstrap.sh.in-40- *.c) src=$1; shift;; bmake-20200710/make-bootstrap.sh.in:41: *) src=`basename "$obj" .o`.c;; bmake-20200710/make-bootstrap.sh.in-42- esac ############################################## bmake-20200710/mk/dirdeps.mk-515-_count_dirdeps: .NOMETA bmake-20200710/mk/dirdeps.mk:516: @echo "${TRACER}Makefiles read: total=${.MAKE.MAKEFILES:[#]} depend=${.MAKE.MAKEFILES:M*depend*:[#]} dirdeps=${.ALLTARGETS:M${SRCTOP}*:O:u:[#]} seconds=`expr ${now_utc} - ${start_utc}`" bmake-20200710/mk/dirdeps.mk-517- ############################################## bmake-20200710/mk/dirdeps.mk-823- @cd ${SRCTOP} && \ bmake-20200710/mk/dirdeps.mk:824: for d in `cd ${RELDIR} && ${.MAKE} -B -f ${"${.MAKEFLAGS:M-n}":?${_src}:${.MAKE.DEPENDFILE:T}} -V DIRDEPS`; do \ bmake-20200710/mk/dirdeps.mk-825- test -d $$d || d=$${d%.*}; \ ############################################## bmake-20200710/mk/install-mk-135- # if this is a BSD system we don't want to touch $SYS_MK bmake-20200710/mk/install-mk:136: dest=`realpath $dest` bmake-20200710/mk/install-mk:137: sys_mk_dir=`realpath $SYS_MK_DIR` bmake-20200710/mk/install-mk-138- if [ $dest = $sys_mk_dir ]; then ############################################## bmake-20200710/mk/install-mk-154-[ -d $dest/sys ] || Do mkdir $dest/sys || exit 1 bmake-20200710/mk/install-mk:155:[ -z "$SKIP" ] && dest=`realpath $dest` bmake-20200710/mk/install-mk-156- bmake-20200710/mk/install-mk:157:cd `dirname $0` bmake-20200710/mk/install-mk-158-mksrc=`'pwd'` ############################################## bmake-20200710/mk/install-new.mk-46- if test $$_t $$new; then \ bmake-20200710/mk/install-new.mk:47: target=`expr $$new : '\(.*\).new'`; \ bmake-20200710/mk/install-new.mk-48- CmpCp $$new $$target $$_bak; \ ############################################## bmake-20200710/mk/lib.mk-90-# If you use -fPIC you need to define BIGPIC to turn on 32-bit bmake-20200710/mk/lib.mk:91:# relocations in asm code bmake-20200710/mk/lib.mk-92-FPICFLAGS ?= -fPIC ############################################## bmake-20200710/mk/lib.mk-157-# HPsUX lorder does not grok anything but .o bmake-20200710/mk/lib.mk:158:LD_sobjs=`${LORDER} ${OBJS} | ${TSORT} | sed 's,\.o,${PICO},'` bmake-20200710/mk/lib.mk:159:LD_pobjs=`${LORDER} ${OBJS} | ${TSORT} | sed 's,\.o,.po,'` bmake-20200710/mk/lib.mk-160-.elif ${TARGET_OSNAME} == "OSF1" ############################################## bmake-20200710/mk/lib.mk-164-# lorder does not grok anything but .o bmake-20200710/mk/lib.mk:165:LD_sobjs=`${LORDER} ${OBJS} | ${TSORT} | sed 's,\.o,${PICO},'` bmake-20200710/mk/lib.mk:166:LD_pobjs=`${LORDER} ${OBJS} | ${TSORT} | sed 's,\.o,.po,'` bmake-20200710/mk/lib.mk-167-AR_cq= -cqs ############################################## bmake-20200710/mk/lib.mk-237-.else bmake-20200710/mk/lib.mk:238:LD_objs ?= `${LORDER} ${OBJS} | ${TSORT}` bmake-20200710/mk/lib.mk:239:LD_sobjs ?= `${LORDER} ${SOBJS} | ${TSORT}` bmake-20200710/mk/lib.mk:240:LD_pobjs ?= `${LORDER} ${POBJS} | ${TSORT}` bmake-20200710/mk/lib.mk-241-.endif ############################################## bmake-20200710/mk/links.mk-24- ${ECHO} "$$t -> $$l"; \ bmake-20200710/mk/links.mk:25: case `'ls' -l $$t 2> /dev/null` in \ bmake-20200710/mk/links.mk-26- *"> $$l") ;; \ bmake-20200710/mk/links.mk-27- *) \ bmake-20200710/mk/links.mk:28: mkdir -p `dirname $$t`; \ bmake-20200710/mk/links.mk-29- rm -f $$t; \ ############################################## bmake-20200710/mk/links.mk-35- ${ECHO} "$$t -> $$l"; \ bmake-20200710/mk/links.mk:36: mkdir -p `dirname $$t`; \ bmake-20200710/mk/links.mk-37- rm -f $$t; \ ############################################## bmake-20200710/mk/man.mk-58- bmake-20200710/mk/man.mk:59:_mandir=${DESTDIR}${MANDIR}/${MANTARGET}`echo $$page | sed -e 's/.*\.cat/./' -e 's/.*\.//'` bmake-20200710/mk/man.mk-60-.if ${MANTARGET} == "cat" ############################################## bmake-20200710/mk/man.mk-63-.if ${MCATEXT} == "" bmake-20200710/mk/man.mk:64:_minstpage=`echo $$page | sed 's/\.cat/./'` bmake-20200710/mk/man.mk-65-.else bmake-20200710/mk/man.mk:66:_minstpage=`echo $$page | sed 's/\.cat.*//'`${MCATEXT} bmake-20200710/mk/man.mk-67-.endif ############################################## bmake-20200710/mk/meta.stage.mk-36-.if defined(NO_POSIX_SHELL) || ${type printf:L:sh:Mbuiltin} == "" bmake-20200710/mk/meta.stage.mk:37:_stage_file_basename = `basename $$f` bmake-20200710/mk/meta.stage.mk:38:_stage_target_dirname = `dirname $$t` bmake-20200710/mk/meta.stage.mk-39-.else ############################################## bmake-20200710/mk/meta.stage.mk-82- cmp -s .dirdep $$t.dirdep && return; \ bmake-20200710/mk/meta.stage.mk:83: x=`cat $$t.dirdep`; \ bmake-20200710/mk/meta.stage.mk-84- case "${RELDIR}:${_dirdep}" in $${x%.*}:$${x}*) ;; \ ############################################## bmake-20200710/mk/meta2deps.sh-248- if [ -z "$SB" ]; then bmake-20200710/mk/meta2deps.sh:249: SB=`echo $CWD | sed 's,/obj.*,,'` bmake-20200710/mk/meta2deps.sh-250- fi ############################################## bmake-20200710/mk/meta2deps.sh-269- /*) cwd=$path;; bmake-20200710/mk/meta2deps.sh:270: *) cwd=`cd $cwd/$path 2> /dev/null && /bin/pwd`;; bmake-20200710/mk/meta2deps.sh-271- esac ############################################## bmake-20200710/mk/meta2deps.sh-307- rdir=$dir bmake-20200710/mk/meta2deps.sh:308: dir=`cd $dir 2> /dev/null && /bin/pwd` bmake-20200710/mk/meta2deps.sh-309- seen="$rdir,$dir" ############################################## bmake-20200710/mk/mk-files.txt-58-in such cases even the ``SRCS`` line is unnecessary as ``prog.mk`` bmake-20200710/mk/mk-files.txt:59:will default it to ``${PROG}.c``. bmake-20200710/mk/mk-files.txt-60- ############################################## bmake-20200710/mk/mk-files.txt-149- set things like ``HOST_LIBEXT = .dylib`` for Darwin or bmake-20200710/mk/mk-files.txt:150: ``SHLIB_FULLVERSION = ${SHLIB_MAJOR}`` for SunOS 5. bmake-20200710/mk/mk-files.txt-151- If there is no OS specific file, ``sys/Generic.mk`` is used. ############################################## bmake-20200710/mk/mk-files.txt-178- An archive of ``.so`` objects compiled for relocation. bmake-20200710/mk/mk-files.txt:179: On NetBSD this is the input to ``lib${LIB}.${LD_so}``, it is bmake-20200710/mk/mk-files.txt-180- skipped if ``MKPICLIB`` is "no". ############################################## bmake-20200710/mk/mk-files.txt-216- bmake-20200710/mk/mk-files.txt:217: The makefile created an openssl dir in ``${OBJ_libcrypto}`` to bmake-20200710/mk/mk-files.txt-218- gather all the headers. dpadd.mk_ did the rest. ############################################## bmake-20200710/mk/mk-files.txt-264- By default it is derived from ``LIBFOO`` by replacing bmake-20200710/mk/mk-files.txt:265: ``${OBJTOP}`` with ``${SRCTOP}``. bmake-20200710/mk/mk-files.txt-266- ############################################## bmake-20200710/mk/mk-files.txt-271- What to add to ``CFLAGS`` to find the public headers. bmake-20200710/mk/mk-files.txt:272: The default varies. If ``${SRC_libfoo}/h`` exists, it is assumed bmake-20200710/mk/mk-files.txt-273- to be the home of all public headers and thus the default is bmake-20200710/mk/mk-files.txt:274: ``-I${SRC_libfoo}/h`` bmake-20200710/mk/mk-files.txt-275- bmake-20200710/mk/mk-files.txt-276- Otherwise we make no assumptions and the default is bmake-20200710/mk/mk-files.txt:277: ``-I${SRC_libfoo} -I${OBJ_libfoo}`` bmake-20200710/mk/mk-files.txt-278- ############################################## bmake-20200710/mk/mk-files.txt-349- bmake-20200710/mk/mk-files.txt:350:The ``_BUILD_*`` forms are identical, but do not use ``${DESTDIR}`` bmake-20200710/mk/mk-files.txt-351-and so are useful for creating symlinks during the build phase. ############################################## bmake-20200710/mk/mk-files.txt-358- bmake-20200710/mk/mk-files.txt:359:would create a symlink called ``machine`` in ``${.OBJDIR}`` pointing to bmake-20200710/mk/mk-files.txt:360:``${.CURDIR}/${MACHINE_ARCH}/include`` before compiling ``md.o`` bmake-20200710/mk/mk-files.txt-361- ############################################## bmake-20200710/mk/mk-files.txt-397-A much simpler implementation than autodep.mk_ it uses bmake-20200710/mk/mk-files.txt:398:``-MF ${.TARGET:T}.d`` bmake-20200710/mk/mk-files.txt-399-to avoid possible conflicts during parallel builds. ############################################## bmake-20200710/mk/mk-files.txt-422- bmake-20200710/mk/mk-files.txt:423:It includes ``${MAKECONF}`` if it is defined and exists. bmake-20200710/mk/mk-files.txt-424- ############################################## bmake-20200710/mk/mk-files.txt-440-This provides a means of fine grained control over warnings on a per bmake-20200710/mk/mk-files.txt:441:``${MACHINE}`` or even file basis. bmake-20200710/mk/mk-files.txt-442- ############################################## bmake-20200710/mk/mk-files.txt-449- bmake-20200710/mk/mk-files.txt:450:would add all the warnings in ``${HIGH_WARNINGS}`` to CFLAGS, but bmake-20200710/mk/mk-files.txt-451-on sparc, ``-Wno-unused`` would replace ``-Wunused``. ############################################## bmake-20200710/mk/nls.mk-31- @for msg in ${NLSALL}; do \ bmake-20200710/mk/nls.mk:32: NLSLANG=`basename $$msg .cat`; \ bmake-20200710/mk/nls.mk-33- dir=${DESTDIR}${NLSDIR}/$${NLSLANG}; \ ############################################## bmake-20200710/mk/stage-install.sh-76- cmp -s $_DIRDEP $t.dirdep && return bmake-20200710/mk/stage-install.sh:77: echo "ERROR: $t installed by `cat $t.dirdep` not `cat $_DIRDEP`" >&2 bmake-20200710/mk/stage-install.sh-78- exit 1 ############################################## bmake-20200710/mk/subdir.mk-77-etags: ${SRCS} bmake-20200710/mk/subdir.mk:78: -cd ${.CURDIR}; etags `echo ${.ALLSRC:N*.h} | sed 's;${.CURDIR}/;;'` bmake-20200710/mk/subdir.mk-79-.endif ############################################## bmake-20200710/mkdeps.sh-57- bmake-20200710/mkdeps.sh:58:Myname=`basename $0 .sh` bmake-20200710/mkdeps.sh:59:Mydir=`dirname $0` bmake-20200710/mkdeps.sh-60- ############################################## bmake-20200710/mkdeps.sh-108- do bmake-20200710/mkdeps.sh:109: ok=`${REALCC:-${CC:-cc}} $arg /tmp/f$$.c 2>/dev/null | grep '^#.*stdio.h' | tail -1` bmake-20200710/mkdeps.sh-110- case "$ok" in ############################################## bmake-20200710/mkdeps.sh-171- # produce a useful error message (useful to emacs or error) bmake-20200710/mkdeps.sh:172: iline=`grep -n ".*include.*[\"<]$ifile[\">]" $file | cut -d: -f1` bmake-20200710/mkdeps.sh-173- echo "\"$file\", line $iline: cannot find include file \"$ifile\"" >> $EF ############################################## bmake-20200710/mkdeps.sh-180- # check whether we have done it yet bmake-20200710/mkdeps.sh:181: case `grep "$ifile" $TF` in bmake-20200710/mkdeps.sh-182- "") echo "$ifile" >> $TF;; ############################################## bmake-20200710/mkdeps.sh-187- bmake-20200710/mkdeps.sh:188: len=`expr "$ifile " : '.*'` bmake-20200710/mkdeps.sh:189: if [ "`expr $llen + $len`" -gt ${width:-76} ]; then bmake-20200710/mkdeps.sh-190- echo "\\" >> .depend ############################################## bmake-20200710/mkdeps.sh-194- echo $N "$ifile $C" >> .depend bmake-20200710/mkdeps.sh:195: llen=`expr $llen + $len` bmake-20200710/mkdeps.sh-196- ############################################## bmake-20200710/mkdeps.sh-199- # this lot is not needed unless using grep. bmake-20200710/mkdeps.sh:200: ilist=`get_incs $ifile` # recurse needed? bmake-20200710/mkdeps.sh:201: [ "$ilist" ] && llen=`gen_deps $llen $ilist` bmake-20200710/mkdeps.sh-202- ;; ############################################## bmake-20200710/mkdeps.sh-220- bmake-20200710/mkdeps.sh:221:set -- `getopt "AanNV:s:w:o:I:D:b:f:i:p" "$@"` bmake-20200710/mkdeps.sh-222-for key in "$@" ############################################## bmake-20200710/mkdeps.sh-242- bmake-20200710/mkdeps.sh:243:[ "$VPATH" ] && vpath=`IFS=:; set -- $VPATH; echo $*` bmake-20200710/mkdeps.sh-244- ############################################## bmake-20200710/mkdeps.sh-249- cpp= bmake-20200710/mkdeps.sh:250: suffix=`expr $file : '.*\.\([^.]*\)'` bmake-20200710/mkdeps.sh-251- ############################################## bmake-20200710/mkdeps.sh-259- fi bmake-20200710/mkdeps.sh:260: srcdir=`dirname $file` bmake-20200710/mkdeps.sh:261: base=`basename $file .$suffix` bmake-20200710/mkdeps.sh-262- bmake-20200710/mkdeps.sh:263: ilist=`get_incs $file` bmake-20200710/mkdeps.sh-264- ############################################## bmake-20200710/mkdeps.sh-273- llen=8 bmake-20200710/mkdeps.sh:274: llen=`gen_deps $llen $ilist` bmake-20200710/mkdeps.sh-275- echo >> .depend ############################################## bmake-20200710/mkdeps.sh-295- # if make doesn't support include, then append our deps... bmake-20200710/mkdeps.sh:296: depended=`grep 'include.*\.depend' $MAKEFILE` bmake-20200710/mkdeps.sh-297- test "$depended" && clean_up ############################################## bmake-20200710/nonints.h-116-void DieHorribly(void) MAKE_ATTR_DEAD; bmake-20200710/nonints.h:117:int PrintAddr(void *, void *); bmake-20200710/nonints.h-118-void Finish(int) MAKE_ATTR_DEAD; ############################################## bmake-20200710/os.sh-39-OSREL=`uname -r` bmake-20200710/os.sh:40:OSMAJOR=`IFS=.; set $OSREL; echo $1` bmake-20200710/os.sh-41-MACHINE=`uname -m` bmake-20200710/os.sh:42:MACHINE_ARCH=`uname -p 2>/dev/null || echo $MACHINE` bmake-20200710/os.sh-43- ############################################## bmake-20200710/os.sh-60- # in conjunction with the for loop. bmake-20200710/os.sh:61: _dirs=`IFS=:; echo ${2:-$PATH}` bmake-20200710/os.sh-62- for d in $_dirs ############################################## bmake-20200710/os.sh-145- OpenBSD) bmake-20200710/os.sh:146: arch=`Which arch /usr/bin:/usr/ucb:$PATH` bmake-20200710/os.sh:147: MACHINE_ARCH=`$arch -s` bmake-20200710/os.sh-148- ;; ############################################## bmake-20200710/os.sh-173- OSREL=`uname -v` bmake-20200710/os.sh:174: OSMAJOR=`IFS=.; set $OSREL; echo $1` bmake-20200710/os.sh-175- MACHINE_ARCH=`uname -m` ############################################## bmake-20200710/os.sh-204-case "$HOSTNAME" in bmake-20200710/os.sh:205:*.*) HOST=`IFS=.; set -- $HOSTNAME; echo $1`;; bmake-20200710/os.sh-206-*) HOST=$HOSTNAME;; ############################################## bmake-20200710/os.sh-212-x86*64|amd64) MACHINE32_ARCH=i386;; bmake-20200710/os.sh:213:*64) MACHINE32_ARCH=`echo $MACHINE_ARCH | sed 's,64,32,'`;; bmake-20200710/os.sh-214-*) MACHINE32_ARCH=$MACHINE_ARCH;; ############################################## bmake-20200710/os.sh-224-# Some people like have /share/$HOST_TARGET/bin etc. bmake-20200710/os.sh:225:HOST_TARGET=`echo ${OS}${OSMAJOR}-$HOST_ARCH | tr -d / | toLower` bmake-20200710/os.sh:226:HOST_TARGET32=`echo ${OS}${OSMAJOR}-$HOST_ARCH32 | tr -d / | toLower` bmake-20200710/os.sh-227-export HOST_TARGET HOST_TARGET32 ############################################## bmake-20200710/parse.c-2415- if (DEBUG(PARSE)) bmake-20200710/parse.c:2416: fprintf(debug_file, "%s: ${.PARSEDIR} = `%s' ${.PARSEFILE} = `%s'\n", bmake-20200710/parse.c-2417- __func__, pd, pf); ############################################## bmake-20200710/unit-tests/Makefile-146- < ${.IMPSRC} > ${.TARGET}.tmp bmake-20200710/unit-tests/Makefile:147: @echo "exit status `cat ${.TARGET:R}.status`" >> ${.TARGET}.tmp bmake-20200710/unit-tests/Makefile-148- @mv ${.TARGET}.tmp ${.TARGET} ############################################## bmake-20200710/unit-tests/modorder.mk-18- # lets the whole test fail once in 1.209.600 runs, on average. bmake-20200710/unit-tests/modorder.mk:19: @echo "LIST:Ox = `test '${LIST:Ox}' != '${LIST:Ox}' ${TEST_RESULT}`" bmake-20200710/unit-tests/modorder.mk:20: @echo "LIST:O:Ox = `test '${LIST:O:Ox}' != '${LIST:O:Ox}' ${TEST_RESULT}`" bmake-20200710/unit-tests/modorder.mk:21: @echo "LISTX = `test '${LISTX}' != '${LISTX}' ${TEST_RESULT}`" bmake-20200710/unit-tests/modorder.mk:22: @echo "LISTSX = `test '${LISTSX}' = '${LISTSX}' ${TEST_RESULT}`" bmake-20200710/unit-tests/modorder.mk-23- @echo "BADMOD 1 = ${LIST:OX}" ############################################## bmake-20200710/debian/mk/bsd.kinc.mk-130- if [ -h $$t ]; then \ bmake-20200710/debian/mk/bsd.kinc.mk:131: cur=`ls -ld $$t | awk '{print $$NF}'` ; \ bmake-20200710/debian/mk/bsd.kinc.mk-132- if [ "$$cur" = "$$l" ]; then \ ############################################## bmake-20200710/debian/mk/bsd.links.mk-14- if [ -h $$t ]; then \ bmake-20200710/debian/mk/bsd.links.mk:15: cur=`ls -ld $$t | awk '{print $$NF}'` ; \ bmake-20200710/debian/mk/bsd.links.mk-16- if [ "$$cur" = "$$l" ]; then \ ############################################## bmake-20200710/debian/mk/bsd.obj.mk-51- @cd ${.CURDIR}; \ bmake-20200710/debian/mk/bsd.obj.mk:52: here=`${PAWD}`; subdir=$${here#${BSDSRCDIR}/}; \ bmake-20200710/debian/mk/bsd.obj.mk-53- if test $$here != $$subdir ; then \ ############################################## bmake-20200710/debian/mk/bsd.obj.mk-59- if [ -h $$here/${__objdir} ]; then \ bmake-20200710/debian/mk/bsd.obj.mk:60: curtarg=`ls -ld $$here/${__objdir} | awk '{print $$NF}'` ; \ bmake-20200710/debian/mk/bsd.obj.mk-61- if [ "$$curtarg" = "$$dest" ]; then \ ############################################## bmake-20200710/debian/mk/stage-install.sh-76- cmp -s $_DIRDEP $t.dirdep && return bmake-20200710/debian/mk/stage-install.sh:77: echo "ERROR: $t installed by `cat $t.dirdep` not `cat $_DIRDEP`" >&2 bmake-20200710/debian/mk/stage-install.sh-78- exit 1 ############################################## bmake-20200710/.pc/140_multiarch.diff/main.c-2031-int bmake-20200710/.pc/140_multiarch.diff/main.c:2032:PrintAddr(void *a, void *b) bmake-20200710/.pc/140_multiarch.diff/main.c-2033-{ ############################################## bmake-20200710/main.c-2058-int bmake-20200710/main.c:2059:PrintAddr(void *a, void *b) bmake-20200710/main.c-2060-{