changeset 59:86151d3b2003

Teach make/make.sh --short not to pull from hg.
author Rob Landley <rob@landley.net>
date Mon, 01 Oct 2007 22:41:14 -0500
parents 8f5d75ee17f2
children db0a5f758831
files make/make.sh
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/make/make.sh	Mon Oct 01 22:38:27 2007 -0500
+++ b/make/make.sh	Mon Oct 01 22:41:14 2007 -0500
@@ -44,7 +44,10 @@
 else
   # Update kernel mercurial repository.
   cd "$LNXDIR"/hg &&
-  hg pull -u
+  if [ "$1" != "--short" ]
+  then
+    hg pull -u
+  fi
 fi
 
 [ $? -ne 0 ] && exit 1