* [Xenomai-help] svn-buildpackage not working?
@ 2007-08-14 0:34 Bill Gatliff
2007-08-14 6:34 ` Gilles Chanteperdrix
2007-08-14 15:03 ` Paul
0 siblings, 2 replies; 5+ messages in thread
From: Bill Gatliff @ 2007-08-14 0:34 UTC (permalink / raw)
To: xenomai
Guys:
Trying to put together a Xenomai package for my Debian "testing" PC. It
hangs here:
# svn co ...; cd xenomai
# svn-buildpackage -us -uc -rfakeroot
...
rm: cannot remove /root/xenomai/debian/tmp//usr/include/xenomai: Is a
directory
make[4]: *** [install-data-local] Error 1
Any ideas?
Regards,
b.g.
--
Bill Gatliff
bgat@domain.hid
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Xenomai-help] svn-buildpackage not working?
2007-08-14 0:34 [Xenomai-help] svn-buildpackage not working? Bill Gatliff
@ 2007-08-14 6:34 ` Gilles Chanteperdrix
2007-08-14 15:03 ` Paul
1 sibling, 0 replies; 5+ messages in thread
From: Gilles Chanteperdrix @ 2007-08-14 6:34 UTC (permalink / raw)
To: Bill Gatliff; +Cc: xenomai
Bill Gatliff wrote:
> Guys:
>
>
> Trying to put together a Xenomai package for my Debian "testing" PC. It
> hangs here:
>
> # svn co ...; cd xenomai
> # svn-buildpackage -us -uc -rfakeroot
> ...
> rm: cannot remove /root/xenomai/debian/tmp//usr/include/xenomai: Is a
> directory
> make[4]: *** [install-data-local] Error 1
>
>
> Any ideas?
Maybe you ran into the same problem as Paul ?
https://mail.gna.org/public/xenomai-core/2007-08/msg00045.html
Could you try the patch attached to that mail and tell us ? Note that
since this patch modifies Makefile.ams, you will have to run
scripts/bootstrap
--
Gilles Chanteperdrix.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Xenomai-help] svn-buildpackage not working?
2007-08-14 0:34 [Xenomai-help] svn-buildpackage not working? Bill Gatliff
2007-08-14 6:34 ` Gilles Chanteperdrix
@ 2007-08-14 15:03 ` Paul
2007-08-14 17:42 ` Gilles Chanteperdrix
1 sibling, 1 reply; 5+ messages in thread
From: Paul @ 2007-08-14 15:03 UTC (permalink / raw)
To: xenomai
[-- Attachment #1: Type: text/plain, Size: 598 bytes --]
Hi Bill
On Tuesday 14 August 2007 01:34, Bill Gatliff wrote:
> Guys:
>
>
> Trying to put together a Xenomai package for my Debian "testing" PC. It
> hangs here:
>
> # svn co ...; cd xenomai
> # svn-buildpackage -us -uc -rfakeroot
> ...
> rm: cannot remove /root/xenomai/debian/tmp//usr/include/xenomai: Is a
> directory
> make[4]: *** [install-data-local] Error 1
>
>
> Any ideas?
I reported this problem a couple of days ago on Xenomai-core along with a
patch. FYI, same patch attached - You'll need to run scripts/bootstrap (and
use --svn-ignore with svn-buildpackage).
Regards, Paul.
[-- Attachment #2: includedir_fix.diff --]
[-- Type: text/x-diff, Size: 1115 bytes --]
--- include/Makefile.am (revision 2902)
+++ include/Makefile.am (working copy)
@@ -1,4 +1,4 @@
-includedir = $(prefix)/include
+#includedir = $(prefix)/include
include_HEADERS = \
rtdk.h
Index: sim/include/Makefile.am
===================================================================
--- sim/include/Makefile.am (revision 2902)
+++ sim/include/Makefile.am (working copy)
@@ -1,3 +1,3 @@
-includedir = $(prefix)/include/asm-sim
+includesubdir = $(prefix)/include/asm-sim
-nodist_include_HEADERS=$(CONFIG_HEADER)
+nodist_includesub_HEADERS=$(CONFIG_HEADER)
Index: sim/skins/posix/Makefile.am
===================================================================
--- sim/skins/posix/Makefile.am (revision 2902)
+++ sim/skins/posix/Makefile.am (working copy)
@@ -1,6 +1,6 @@
vpath %.c $(top_srcdir)/../ksrc/skins/posix
-includedir = $(prefix)/include/asm-sim
+includesubdir = $(prefix)/include/asm-sim
CC = $(top_builddir)/gcic/gcic
@@ -42,7 +42,7 @@ nodist_libposix_sim_a_SOURCES = \
shm.c \
module.c
-include_HEADERS = \
+includesub_HEADERS = \
posix_overrides.h
SUBDIRS = . testsuite demos
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Xenomai-help] svn-buildpackage not working?
2007-08-14 15:03 ` Paul
@ 2007-08-14 17:42 ` Gilles Chanteperdrix
2007-08-17 18:48 ` Bill Gatliff
0 siblings, 1 reply; 5+ messages in thread
From: Gilles Chanteperdrix @ 2007-08-14 17:42 UTC (permalink / raw)
To: Paul; +Cc: xenomai
Paul wrote:
>
> Hi Bill
>
> On Tuesday 14 August 2007 01:34, Bill Gatliff wrote:
> > Guys:
> >
> >
> > Trying to put together a Xenomai package for my Debian "testing" PC. It
> > hangs here:
> >
> > # svn co ...; cd xenomai
> > # svn-buildpackage -us -uc -rfakeroot
> > ...
> > rm: cannot remove /root/xenomai/debian/tmp//usr/include/xenomai: Is a
> > directory
> > make[4]: *** [install-data-local] Error 1
> >
> >
> > Any ideas?
>
> I reported this problem a couple of days ago on Xenomai-core along with a
> patch. FYI, same patch attached - You'll need to run scripts/bootstrap (and
> use --svn-ignore with svn-buildpackage).
Patch is applied, bootstrap run, everything should be ok now.
--
Gilles Chanteperdrix.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Xenomai-help] svn-buildpackage not working?
2007-08-14 17:42 ` Gilles Chanteperdrix
@ 2007-08-17 18:48 ` Bill Gatliff
0 siblings, 0 replies; 5+ messages in thread
From: Bill Gatliff @ 2007-08-17 18:48 UTC (permalink / raw)
To: Gilles Chanteperdrix; +Cc: xenomai
Gilles:
Gilles Chanteperdrix wrote:
> > I reported this problem a couple of days ago on Xenomai-core along with a
> > patch. FYI, same patch attached - You'll need to run scripts/bootstrap (and
> > use --svn-ignore with svn-buildpackage).
>
> Patch is applied, bootstrap run, everything should be ok now.
>
Appears to be, indeed.
b.g.
--
Bill Gatliff
bgat@domain.hid
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2007-08-17 18:48 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-14 0:34 [Xenomai-help] svn-buildpackage not working? Bill Gatliff
2007-08-14 6:34 ` Gilles Chanteperdrix
2007-08-14 15:03 ` Paul
2007-08-14 17:42 ` Gilles Chanteperdrix
2007-08-17 18:48 ` Bill Gatliff
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.