On 02-04-24 02:40:25 CEST, Eugene Reid wrote: > # make install-ca > /usr/bin/make scripts docs src SUBTARGET=install-common > cd scripts && /usr/bin/make install-common > cd docs && /usr/bin/make install-common > cd src && /usr/bin/make install-common > > On both machines I've tried this on, the system will hang on the command for hours. >Anyone else have anything similar happen to them or have suggestions on OS/shell to >use?
sounds like it's waiting for input. check what it is doing, using pstree or ps and follow the tree of processes from the make you started, via the make process it started and so on to the latest child. find out its pid and use ps -l -p $pid (i'm assuming that openBSD's ps behaves like freeBSD's ps here) to see its wchan. rj _______________________________________________ Openca-Users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/openca-users
