Hi, I am running into a build issue that I couldn't figure out. The error I am getting is :
Making all in man1 make[3]: Entering directory `/home/jason1/ymchen/test_ws/nox/build/man/man1' make[3]: *** No rule to make target `stop-test-vm.1', needed by `all-am'. Stop. make[3]: Leaving directory `/home/jason1/ymchen/test_ws/nox/build/man/man1' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/home/jason1/ymchen/test_ws/nox/build/man' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/jason1/ymchen/test_ws/nox/build' make: *** [all] Error 2 j What I did is that I have a copy A of nox tree that has some changes from one engineer, which has the same build issue. I have copy B of nox tree that was derived from copy A, that build fine. copyA is under source control, what I want to achieve is checkin working copyB, currently is not under source control. So I tried following: 1) cp -r /home/dirB/copyB /home/dirA/copyA. ==> same issue 2) rm -r /home/dirA/copyA; cp -r /home/dirB/copyB /home/dirA/copyB ==> builds fine. I thought maybe cp didn't overwrite everything, so I tried "cp -rf /home/dirB/copyB /home/dirA/copyA" to force overwrite, but still does not build. Now I run out of clue. There is some bad file in copyA that is causing build issue that exists even after cp -rf? Could anyone shed some lights on what might be going on? I have already tried removing/recreating build directory. Thanks! Yimin
