home: hub: 9ficl

Download patch

ref: 2b5a6794ca492530d5d2fb7ae9d5bd47c3d8c03b
parent: 1f18fc36923878841111e7f5752cf2e927b07233
author: asau <asau@ficl.sf.net>
date: Thu Dec 23 18:39:21 CST 2010

Escape shell variable properly.

--- a/Makefile
+++ b/Makefile
@@ -36,7 +36,7 @@
 all: ficl
 
 test:
-	wd="$$(pwd)"; cd test && $${wd}/ficl ficltest.fr < /dev/null
+	wd="$$(pwd)"; cd test && "$${wd}"/ficl ficltest.fr < /dev/null
 
 ficl: main.o $(HEADERS) libficl.a
 	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ main.o -L. -lficl -lm