Skip to content

Commit

Permalink
bourne shell compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
steve committed Oct 19, 2002
1 parent 4350180 commit 1e170ee
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions iverilog-vpi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# 59 Temple Place - Suite 330
# Boston, MA 02111-1307, USA
#
#ident "$Id: iverilog-vpi.sh,v 1.8 2002/09/24 01:50:53 steve Exp $"
#ident "$Id: iverilog-vpi.sh,v 1.9 2002/10/19 23:18:52 steve Exp $"

# These are the variables used for compiling files
CC=gcc
Expand Down Expand Up @@ -84,8 +84,7 @@ OUT=$OUT".vpi"
compile_errors=0

# Compile all the source files into object files
for src
in $CCSRC
for src in $CCSRC
do
base=`basename $src .c`
obj=$base".o"
Expand All @@ -95,8 +94,7 @@ do
OBJ="$OBJ $obj"
done

for src
in $CXSRC
for src in $CXSRC
do
base=`basename $src .cc`
obj=$base".o"
Expand Down

0 comments on commit 1e170ee

Please sign in to comment.