Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH 1/2] build: Fix build error if path contains spaces
@ 2013-11-28 11:10 Szymon Janc
  2013-11-28 11:10 ` [PATCH 2/2] gitignore: Add tools/avdtp-tester Szymon Janc
  0 siblings, 1 reply; 6+ messages in thread
From: Szymon Janc @ 2013-11-28 11:10 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Szymon Janc

janccszy@box:~/bluez test$ make
  GEN      lib/bluetooth/bluetooth.h
ln: target ‘lib/bluetooth/bluetooth.h’ is not a directory
make: *** [lib/bluetooth/bluetooth.h] Error 1
---
 Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile.am b/Makefile.am
index 2bb2eb5..a3924aa 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -328,7 +328,7 @@ $(lib_libbluetooth_la_OBJECTS): $(local_headers)
 
 lib/bluetooth/%.h: lib/%.h
 	$(AM_V_at)$(MKDIR_P) lib/bluetooth
-	$(AM_V_GEN)$(LN_S) -f $(abs_top_builddir)/$< $@
+	$(AM_V_GEN)$(LN_S) -f "$(abs_top_builddir)"/$< $@
 
 clean-local:
 	$(RM) -r lib/bluetooth
-- 
1.8.3.2


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-11-28 12:40 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-28 11:10 [PATCH 1/2] build: Fix build error if path contains spaces Szymon Janc
2013-11-28 11:10 ` [PATCH 2/2] gitignore: Add tools/avdtp-tester Szymon Janc
2013-11-28 11:26   ` Anderson Lizardo
2013-11-28 11:31     ` Szymon Janc
2013-11-28 11:33   ` [PATCH v2 2/2] gitignore: Add unit/test-avdtp Szymon Janc
2013-11-28 12:40     ` Luiz Augusto von Dentz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox