Remove broken Python bit from heptc script
This commit is contained in:
parent
e0d1900f3a
commit
99460e24e5
1 changed files with 3 additions and 2 deletions
5
heptc
5
heptc
|
@ -1,11 +1,12 @@
|
|||
#!/bin/bash
|
||||
#Small wrapper to deal with compilation of the compiler and the stdlib.
|
||||
#
|
||||
# Small wrapper to deal with compilation of the compiler and the stdlib.
|
||||
|
||||
STATUS=0
|
||||
|
||||
RUN_DIR="`pwd`"
|
||||
|
||||
SCRIPT_DIR=`dirname $(python -c "import os, sys; print os.path.realpath(\"$0\")")`
|
||||
SCRIPT_DIR=`dirname $(realpath $0)`
|
||||
|
||||
COMPILER_DIR="$SCRIPT_DIR/compiler"
|
||||
if [ -x $COMPILER_DIR/heptc.native ];
|
||||
|
|
Loading…
Reference in a new issue