Merge branch 'tizen_2.0' into master
[platform/adaptation/emulator/vmodem-daemon-emulator.git] / build_dpkg.sh
1 #!/bin/sh
2
3 __option=$1
4
5 if [ "x$__option" = "x" ]; then
6         exec dpkg-buildpackage -sa -rfakeroot
7 elif [ "x$__option" = "xno-sign" ]; then
8         echo "This build command is only for packaging."
9         exec dpkg-buildpackage -b -us -uc -rfakeroot
10 else
11         echo "This options is invalid."
12 fi
13