mk: use linux and freebsd in config names
[dpdk.git] / devtools / build-tags.sh
index a10a38f..753e4c2 100755 (executable)
@@ -40,8 +40,8 @@ ignore="( -name .svn -o -name CVS -o -name .hg -o -name .git ) -prune -o"
 
 source_dirs="app buildtools drivers examples lib"
 
-skip_bsd="( -name bsdapp ) -prune -o"
-skip_linux="( -name linuxapp ) -prune -o"
+skip_bsd="( -name freebsd ) -prune -o"
+skip_linux="( -name linux ) -prune -o"
 skip_arch="( -name arch ) -prune -o"
 skip_sse="( -name *_sse*.[chS] ) -prune -o"
 skip_avx="( -name *_avx*.[chS] ) -prune -o"
@@ -146,8 +146,8 @@ check_valid_target()
 if [ -n "$2" ]; then
        check_valid_target $2
 
-       echo $2 | grep -q "linuxapp-" || linux=false
-       echo $2 | grep -q "bsdapp-" || bsd=false
+       echo $2 | grep -q "linux" || linux=false
+       echo $2 | grep -q "bsd" || bsd=false
        echo $2 | grep -q "x86_64-" || x86_64=false
        echo $2 | grep -q "arm-" || arm_32=false
        echo $2 | grep -q "arm64-" || arm_64=false