* [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
* [PATCH 2/2] gitignore: Add tools/avdtp-tester
2013-11-28 11:10 [PATCH 1/2] build: Fix build error if path contains spaces Szymon Janc
@ 2013-11-28 11:10 ` Szymon Janc
2013-11-28 11:26 ` Anderson Lizardo
2013-11-28 11:33 ` [PATCH v2 2/2] gitignore: Add unit/test-avdtp Szymon Janc
0 siblings, 2 replies; 6+ messages in thread
From: Szymon Janc @ 2013-11-28 11:10 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Szymon Janc
---
.gitignore | 1 +
1 file changed, 1 insertion(+)
diff --git a/.gitignore b/.gitignore
index d567d26..2d3435a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -100,6 +100,7 @@ unit/test-gobex-apparam
unit/test-gobex-header
unit/test-gobex-packet
unit/test-gobex-transfer
+unit/test-avdtp
unit/test-*.log
unit/test-*.trs
--
1.8.3.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] gitignore: Add tools/avdtp-tester
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
1 sibling, 1 reply; 6+ messages in thread
From: Anderson Lizardo @ 2013-11-28 11:26 UTC (permalink / raw)
To: Szymon Janc; +Cc: BlueZ development
Hi Szymon,
On Thu, Nov 28, 2013 at 7:10 AM, Szymon Janc <szymon.janc@tieto.com> wrote:
> ---
> .gitignore | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/.gitignore b/.gitignore
> index d567d26..2d3435a 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -100,6 +100,7 @@ unit/test-gobex-apparam
> unit/test-gobex-header
> unit/test-gobex-packet
> unit/test-gobex-transfer
> +unit/test-avdtp
> unit/test-*.log
> unit/test-*.trs
The tool name on the commit description is incorrect.
Best Regards,
--
Anderson Lizardo
Instituto Nokia de Tecnologia - INdT
Manaus - Brazil
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] gitignore: Add tools/avdtp-tester
2013-11-28 11:26 ` Anderson Lizardo
@ 2013-11-28 11:31 ` Szymon Janc
0 siblings, 0 replies; 6+ messages in thread
From: Szymon Janc @ 2013-11-28 11:31 UTC (permalink / raw)
To: Anderson Lizardo; +Cc: BlueZ development
Hi,
> Hi Szymon,
>
> On Thu, Nov 28, 2013 at 7:10 AM, Szymon Janc <szymon.janc@tieto.com> wrote:
> > ---
> > .gitignore | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > diff --git a/.gitignore b/.gitignore
> > index d567d26..2d3435a 100644
> > --- a/.gitignore
> > +++ b/.gitignore
> > @@ -100,6 +100,7 @@ unit/test-gobex-apparam
> > unit/test-gobex-header
> > unit/test-gobex-packet
> > unit/test-gobex-transfer
> > +unit/test-avdtp
> > unit/test-*.log
> > unit/test-*.trs
>
> The tool name on the commit description is incorrect.
Ahh right, copy-paste error :) will send v2
--
BR
Szymon
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v2 2/2] gitignore: Add unit/test-avdtp
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:33 ` Szymon Janc
2013-11-28 12:40 ` Luiz Augusto von Dentz
1 sibling, 1 reply; 6+ messages in thread
From: Szymon Janc @ 2013-11-28 11:33 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Szymon Janc
---
v2: fixed commit message
.gitignore | 1 +
1 file changed, 1 insertion(+)
diff --git a/.gitignore b/.gitignore
index d567d26..2d3435a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -100,6 +100,7 @@ unit/test-gobex-apparam
unit/test-gobex-header
unit/test-gobex-packet
unit/test-gobex-transfer
+unit/test-avdtp
unit/test-*.log
unit/test-*.trs
--
1.8.3.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v2 2/2] gitignore: Add unit/test-avdtp
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
0 siblings, 0 replies; 6+ messages in thread
From: Luiz Augusto von Dentz @ 2013-11-28 12:40 UTC (permalink / raw)
To: Szymon Janc; +Cc: linux-bluetooth@vger.kernel.org
Hi Szymon,
On Thu, Nov 28, 2013 at 1:33 PM, Szymon Janc <szymon.janc@tieto.com> wrote:
> ---
> v2: fixed commit message
> .gitignore | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/.gitignore b/.gitignore
> index d567d26..2d3435a 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -100,6 +100,7 @@ unit/test-gobex-apparam
> unit/test-gobex-header
> unit/test-gobex-packet
> unit/test-gobex-transfer
> +unit/test-avdtp
> unit/test-*.log
> unit/test-*.trs
>
> --
> 1.8.3.2
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Both patches pushed, thanks.
--
Luiz Augusto von Dentz
^ permalink raw reply [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