about summary refs log tree commit diff stats
path: root/subx/gen
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-10-27 22:46:11 -0700
committerKartik Agaram <vc@akkartik.com>2018-10-27 22:46:23 -0700
commit5f21a5e788402345f97e8bc934259e960ba0f334 (patch)
tree686ce7ef76e90775903d33916017a6cdc9a80e91 /subx/gen
parent5e5f569c1777e4062b2d4379ed4b17b9d0b18281 (diff)
downloadmu-5f21a5e788402345f97e8bc934259e960ba0f334.tar.gz
4726
Diffstat (limited to 'subx/gen')
-rwxr-xr-xsubx/gen4
1 files changed, 2 insertions, 2 deletions
diff --git a/subx/gen b/subx/gen
index 846d4186..91370ea4 100755
--- a/subx/gen
+++ b/subx/gen
@@ -3,9 +3,9 @@
 
 if [[ $1 == 'ex'* ]]
 then
-  CFLAGS=-g subx translate examples/$1.subx -o examples/`echo $1 |sed 's/\..*//'`
+  CFLAGS=-g ./subx translate examples/$1.subx -o examples/`echo $1 |sed 's/\..*//'`
   exit $?
 fi
 
-CFLAGS=-g subx translate *.subx apps/$1.subx  -o apps/`echo $1 |sed 's/\..*//'`
+CFLAGS=-g ./subx translate *.subx apps/$1.subx  -o apps/`echo $1 |sed 's/\..*//'`
 exit $?