diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2002-10-17 01:38:42 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2002-10-17 01:38:42 +0000 |
commit | cbf80901b694d2006c79613807e825b3640e3981 (patch) | |
tree | 08c1cdce49c9ffdc86cebd63b454c4608f4c453c /cad/verilog-current/patches | |
parent | 0442b0d350e2f75c82ac59f369865ee42e9bc945 (diff) | |
download | pkgsrc-cbf80901b694d2006c79613807e825b3640e3981.tar.gz |
fix the iverilog-vpi shell script (bash-isms)
Diffstat (limited to 'cad/verilog-current/patches')
-rw-r--r-- | cad/verilog-current/patches/patch-aa | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/cad/verilog-current/patches/patch-aa b/cad/verilog-current/patches/patch-aa new file mode 100644 index 00000000000..bd83951479f --- /dev/null +++ b/cad/verilog-current/patches/patch-aa @@ -0,0 +1,24 @@ +$NetBSD: patch-aa,v 1.10 2002/10/17 01:38:43 dmcmahill Exp $ + +--- iverilog-vpi.sh.orig Wed Sep 18 19:25:18 2002 ++++ iverilog-vpi.sh +@@ -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" +@@ -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" |