aboutsummaryrefslogtreecommitdiff
path: root/mkport.sh
diff options
context:
space:
mode:
authorKris Moore <kris@pcbsd.org>2016-08-05 15:35:18 -0400
committerKris Moore <kris@pcbsd.org>2016-08-05 15:35:18 -0400
commit565fd46fce7ad1e84db5de391f30284fcb80effa (patch)
treeabccd5f4025b9d331edb29edd7a3c208bf874ba9 /mkport.sh
parentUpdate mkport.sh (diff)
downloadlumina-565fd46fce7ad1e84db5de391f30284fcb80effa.tar.gz
lumina-565fd46fce7ad1e84db5de391f30284fcb80effa.tar.bz2
lumina-565fd46fce7ad1e84db5de391f30284fcb80effa.zip
Don't need to sanity check repo first
Diffstat (limited to 'mkport.sh')
-rwxr-xr-xmkport.sh8
1 files changed, 0 insertions, 8 deletions
diff --git a/mkport.sh b/mkport.sh
index c006e47f..6518dae7 100755
--- a/mkport.sh
+++ b/mkport.sh
@@ -59,14 +59,6 @@ if [ ! -d "$distdir" ] ; then
mkdir -p ${distdir}
fi
-echo "Sanity checking the repo..."
-OBJS=`find . | grep '\.o$'`
-if [ -n "$OBJS" ] ; then
- echo "Found the following .o files, remove them first!"
- echo $OBJS
- exit 1
-fi
-
# Get the GIT tag
ghtag=`git log -n 1 . | grep '^commit ' | awk '{print $2}'`
bgstack15