From 0ba7b16e929acebafb920f038bf9d6746b36a597 Mon Sep 17 00:00:00 2001 From: simonzhangsz Date: Fri, 18 Oct 2024 14:17:31 +0800 Subject: [PATCH] ... --- plat/mkplat.sh | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/plat/mkplat.sh b/plat/mkplat.sh index 0b447e8..c235809 100755 --- a/plat/mkplat.sh +++ b/plat/mkplat.sh @@ -3,17 +3,16 @@ platDir=../plat platModuleList="8ecp aif bicc debug haepub iptrans isdn isup m2ua mgc mgcp mgc_v2 mtp3 pal public rtp sccp scf sip smpp snmp tcap xapp" for mod in $platModuleList; do - echo "====================== make $mod ======================="; + echo "====================== make $mod =======================" cd $platDir/$mod #make clean make - if [ $mod == "iptrans" ] ; then + if [ $mod == "iptrans" ]; then ./mkiptrans.sh - cp -f ./iptrans ../../bin/ + cp -f ./iptrans ../../bin/ fi - - cd - + + cd - echo "" done -