typo on man/Makefile.am
Hi, This should speak for itself. :-) Index: man/Makefile.am =================================================================== --- man/Makefile.am (revision 153) +++ man/Makefile.am (working copy) @@ -54,7 +54,7 @@ cd $(DESTDIR)$(mandir)/man3 && $(LN_S) \ dispatch_object.3 dispatch_suspend.3 cd $(DESTDIR)$(mandir)/man3 && $(LN_S) \ - dispatch_object.3 dispacth_resume.3 + dispatch_object.3 dispatch_resume.3 cd $(DESTDIR)$(mandir)/man3 && $(LN_S) \ dispatch_object.3 dispatch_get_context.3 cd $(DESTDIR)$(mandir)/man3 && $(LN_S) \ -- Rui Paulo
On Sat, 14 Nov 2009, Rui Paulo wrote:
This should speak for itself. :-)
Committed, thanks! If anyone has ideas about how to do mlinks better with automake, I'm open to that. I've noticed that make uninstall doesn't know how to deal with them using this method, and LN_S doesn't include -f so if you make install a second time, it fails due to the link. Robert N M Watson Computer Laboratory University of Cambridge
Index: man/Makefile.am =================================================================== --- man/Makefile.am (revision 153) +++ man/Makefile.am (working copy) @@ -54,7 +54,7 @@ cd $(DESTDIR)$(mandir)/man3 && $(LN_S) \ dispatch_object.3 dispatch_suspend.3 cd $(DESTDIR)$(mandir)/man3 && $(LN_S) \ - dispatch_object.3 dispacth_resume.3 + dispatch_object.3 dispatch_resume.3 cd $(DESTDIR)$(mandir)/man3 && $(LN_S) \ dispatch_object.3 dispatch_get_context.3 cd $(DESTDIR)$(mandir)/man3 && $(LN_S) \
-- Rui Paulo
_______________________________________________ libdispatch-dev mailing list libdispatch-dev@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/libdispatch-dev
Hi, Robert Watson schrieb:
If anyone has ideas about how to do mlinks better with automake, I'm open to that. I've noticed that make uninstall doesn't know how to deal with them using this method, and LN_S doesn't include -f so if you make install a second time, it fails due to the link.
No, but `$(LN_S) -f' would be nice in the meantime. ciao, Mario
On Mon, 16 Nov 2009, Mario Schwalbe wrote:
If anyone has ideas about how to do mlinks better with automake, I'm open to that. I've noticed that make uninstall doesn't know how to deal with them using this method, and LN_S doesn't include -f so if you make install a second time, it fails due to the link.
No, but `$(LN_S) -f' would be nice in the meantime.
It was unclear to me how portable this was; I've gone ahead and committed it as r166; perhaps we can find a better solution later if it becomes a problem (it would be nice if deinstall removed the symlinks, also). Robert N M Watson Computer Laboratory University of Cambridge
participants (3)
-
Mario Schwalbe
-
Robert Watson
-
Rui Paulo