summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2012-11-08 00:46:57 +0000
committerVincent Sanders <vince@netsurf-browser.org>2012-11-08 00:46:57 +0000
commitb850b3ac49be0aa4f6f60e7bc29c9e96f0688aea (patch)
treed6b23f412df4110ac64e401abbf453612f4c1157
parentbb42a650df4fa60507c202e9b716df13d6180533 (diff)
downloadnetsurf-b850b3ac49be0aa4f6f60e7bc29c9e96f0688aea.tar.gz
netsurf-b850b3ac49be0aa4f6f60e7bc29c9e96f0688aea.tar.bz2
ensure we do not have double path separators in the webidl include path
-rw-r--r--Makefile.sources.javascript2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.sources.javascript b/Makefile.sources.javascript
index 88412ec57..eff20524d 100644
--- a/Makefile.sources.javascript
+++ b/Makefile.sources.javascript
@@ -31,7 +31,7 @@ D_JSAPI_BINDING += $(patsubst %.c,%.d,$(2))
$(2): $(1) $(OBJROOT)/created
$$(VQ)echo " GENBIND: $(1)"
- $(Q)nsgenbind -I javascript/WebIDL/ -d $(patsubst %.c,%.d,$(2)) -o $(2) $(1)
+ $(Q)nsgenbind -I javascript/WebIDL -d $(patsubst %.c,%.d,$(2)) -o $(2) $(1)
endef