Browse Source

added detect ldd

pull/1054/head
Daniel Gibbs 9 years ago
parent
commit
68b7a384d3
  1. 5
      lgsm/functions/core_functions.sh
  2. 16
      lgsm/functions/core_getopt.sh

5
lgsm/functions/core_functions.sh

@ -283,6 +283,11 @@ functionfile="${FUNCNAME}"
fn_fetch_function
}
command_dev_detect_ldd.sh(){
functionfile="${FUNCNAME}"
fn_fetch_function
}
# Fix
fix.sh(){

16
lgsm/functions/core_getopt.sh

@ -45,6 +45,8 @@ case "${getopt}" in
command_dev_detect_deps.sh;;
dg|detect-glibc)
command_dev_detect_glibc.sh;;
dg|detect-ldd)
command_dev_detect_ldd.sh;;
*)
if [ -n "${getopt}" ]; then
echo -e "${red}Unknown command${default}: $0 ${getopt}"
@ -107,6 +109,8 @@ case "${getopt}" in
command_dev_detect_deps.sh;;
dg|detect-glibc)
command_dev_detect_glibc.sh;;
dg|detect-ldd)
command_dev_detect_ldd.sh;;
*)
if [ -n "${getopt}" ]; then
echo -e "${red}Unknown command${default}: $0 ${getopt}"
@ -168,6 +172,8 @@ case "${getopt}" in
command_dev_detect_deps.sh;;
dg|detect-glibc)
command_dev_detect_glibc.sh;;
dg|detect-ldd)
command_dev_detect_ldd.sh;;
*)
if [ -n "${getopt}" ]; then
echo -e "${red}Unknown command${default}: $0 ${getopt}"
@ -224,6 +230,8 @@ case "${getopt}" in
command_dev_detect_deps.sh;;
dg|detect-glibc)
command_dev_detect_glibc.sh;;
dg|detect-ldd)
command_dev_detect_ldd.sh;;
*)
if [ -n "${getopt}" ]; then
echo -e "${red}Unknown command${default}: $0 ${getopt}"
@ -288,6 +296,8 @@ case "${getopt}" in
command_dev_detect_deps.sh;;
dg|detect-glibc)
command_dev_detect_glibc.sh;;
dg|detect-ldd)
command_dev_detect_ldd.sh;;
fd|fastdl)
command_fastdl.sh;;
*)
@ -355,6 +365,8 @@ case "${getopt}" in
command_dev_detect_deps.sh;;
dg|detect-glibc)
command_dev_detect_glibc.sh;;
dg|detect-ldd)
command_dev_detect_ldd.sh;;
*)
if [ -n "${getopt}" ]; then
echo -e "${red}Unknown command${default}: $0 ${getopt}"
@ -423,6 +435,8 @@ case "${getopt}" in
command_dev_detect_deps.sh;;
dg|detect-glibc)
command_dev_detect_glibc.sh;;
dg|detect-ldd)
command_dev_detect_ldd.sh;;
mc|map-compressor)
compress_unreal2_maps.sh;;
*)
@ -493,6 +507,8 @@ case "${getopt}" in
command_dev_detect_deps.sh;;
dg|detect-glibc)
command_dev_detect_glibc.sh;;
dg|detect-ldd)
command_dev_detect_ldd.sh;;
*)
if [ -n "${getopt}" ]; then
echo -e "${red}Unknown command${default}: $0 ${getopt}"

Loading…
Cancel
Save