diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2012-03-29 11:52:51 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2012-03-29 11:52:51 -0700 |
commit | 74abdae6ad09c5d349da555bd101da062b45eee5 (patch) | |
tree | 98aaaf89d8f3e05549e9996bfc3fc0b4d600581f /xorg/X11R7.6 | |
parent | b1246126750f0a8e8c502611f82d503555d0bf94 (diff) | |
download | xrdp-proprietary-74abdae6ad09c5d349da555bd101da062b45eee5.tar.gz xrdp-proprietary-74abdae6ad09c5d349da555bd101da062b45eee5.zip |
xorg: change buildx.sh parameter, added drop for debugging builds
Diffstat (limited to 'xorg/X11R7.6')
-rwxr-xr-x | xorg/X11R7.6/buildx.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xorg/X11R7.6/buildx.sh b/xorg/X11R7.6/buildx.sh index 2e5073e2..ab0b8e66 100755 --- a/xorg/X11R7.6/buildx.sh +++ b/xorg/X11R7.6/buildx.sh @@ -251,6 +251,7 @@ if [ $# -lt 1 ]; then echo "usage: build.sh <installation dir>" echo "usage: build.sh <clean>" echo "usage: build.sh default" + echo "usage: build.sh <installation dir> drop - set env and run bash in rdp dir" echo "" exit 1 fi @@ -346,9 +347,8 @@ export X11RDPBASE cd rdp make -if [ $? -ne 0 ]; then +if [ "$2" = "drop" ]; then echo "" - echo "X11rdp make failed" echo "dropping you in dir, type exit to get out" bash exit 1 |