aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorConley Owens <cco3@android.com>2011-05-04 15:15:46 -0700
committerConley Owens <cco3@android.com>2011-05-04 15:19:56 -0700
commit1f494d2a7a1d7b87378e450fe918eff2bc01d604 (patch)
tree07d6e703b23c82182691100dd01c3984dcac3e7f /scripts
parentfe577ef9985a2862ed431db95cba87cecd67c57e (diff)
downloadsource.android.com-1f494d2a7a1d7b87378e450fe918eff2bc01d604.tar.gz
Fixed problem with Ubuntu packages only being correct for 64-bit systems.
(I also snuck in a little helpful output into microhttpd) Change-Id: Ic67d311a3c7bc93d7338edd9b8c3f6870731c0c0
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/micro-httpd.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/micro-httpd.py b/scripts/micro-httpd.py
index cf0b4027..13e35a7b 100755
--- a/scripts/micro-httpd.py
+++ b/scripts/micro-httpd.py
@@ -18,4 +18,5 @@ import SimpleHTTPServer, SocketServer, os
PORT = int(os.environ.get('HTTP_PORT', 8080))
Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
httpd = SocketServer.TCPServer(("0.0.0.0", PORT), Handler)
+print "Serving on port %d" % PORT
httpd.serve_forever()