On Tue, Nov 14, 2006 at 03:01:13PM +0100, Florian Hahn wrote:
> If I change
> "$(FILE) ../docs/man/man3/*.3{hal,rtapi} $(DESTDIR)$(mandir)/man3"
> to
> "$(FILE) ../docs/man/man3/*.3hal $(DESTDIR)$(mandir)/man3
> $(FILE) ../docs/man/man3/*.3rtapi $(DESTDIR)$(mandir)/man3"
> it works.
Go ahead and
http://wiki.linuxcnc.org/cgi-bin/emcinfo.pl?CVS
Later, to incorporate any changes made to the emc2 source by other
developers, run
cvs -z5 update -Pdin the top emc2 directory. - Original Message -
From: "Florian Hahn" <[EMAIL PROTECTED]>
To: "EMC developers"
Sent: Tuesday, November 14
I think you mean "cvs up -dP" not "-pD".
If I change
"$(FILE) ../docs/man/man3/*.3{hal,rtapi} $(DESTDIR)$(mandir)/man3"
to
"$(FILE) ../docs/man/man3/*.3hal $(DESTDIR)$(mandir)/man3
$(FILE) ../docs/man/man3/*.3rtapi $(DESTDIR)$(mandir)/man3"
it works.
Florian
Jeff Epler schrieb:
> On Tue, Nov 14,
Hi Jeff,
thanks, the fist problem is fixed, but now I get this:
$ sudo make install
install -d -m 0755 -o root NONE/lib/emc2/modules/emc2 \
/usr/local/bin \
/usr/local/etc/emc2
install -m 0644 -o root ../rtlib/*.so NONE/lib/emc2/modules
install -m 0644 -o root ../scripts/rtapi.conf /usr/local/etc
Oops.
Actually, -d means (d)uplicate file/directory structure, not (d)elete
files that have been removed. I might have known this if I had
continued reading the manpage :)
Just shows that trying to explain things I don't understand isn't an
appropriate activity before I've had coffee.
- Stev
Heh.
Just so people aren't confused here:
-pD and -Dp are equivalent to each other
-Pd and -dP are equivalent to each other
-Pd and -pD are *not* equivalent to each other.
ie, the order of the options doesn't matter, but the case does.
dP or Pd does an update, (d)eleting files that are no longer
On Tue, Nov 14, 2006 at 02:01:33PM +0100, Florian Hahn wrote:
> install -m 0644 -o root ../docs/man/man3/*.3{hal,rtapi} /usr/local/man/man3
> install: Aufruf von stat für „../docs/man/man3/*.3{hal,rtapi}“ nicht
> möglich: No such file or directory
Make sure you use "-pD" when doing CVS updates,