diff --git a/common/common-functions b/common/common-functions index b8ffb71..48f3965 100644 --- a/common/common-functions +++ b/common/common-functions @@ -872,14 +872,3 @@ get_sources() { fi } -#-----------------------------------------------# -_IS_() # Function to test build scripts names -#-----------------------------------------------# -{ - # Returns substr $2 or null str - # Must use string testing - case $1 in - *$2*) echo "$2" ;; - *) echo "" ;; - esac -}