1. 14 Mar, 2017 36 commits
  2. 08 Mar, 2017 1 commit
  3. 07 Mar, 2017 1 commit
  4. 06 Mar, 2017 2 commits
    • Kir Kolyshkin's avatar
      nmk: return --no-print-directory · d5df3bf2
      Kir Kolyshkin authored
      A year ago this flag was removed, as parts of criu were build in
      sub-directories (i.e. by using make -C SUBDIR), and therefore
      paths printed by make were relevant to a SUBDIR rather than top
      source dir, which prevented tools like vim from jumping to a
      correct source file with with error (for more details, see
      commit XXXXXX "nmk: remove no-print-directory from MAKEFLAGS").
      
      Now, as we have everything (except Documentation and test, which
      is rather minor) built from top source directory, we can finally
      add the flag back and enjoy cleaner output.
      Reviewed-by: 's avatarDmitry Safonov <dsafonov@virtuozzo.com>
      Signed-off-by: 's avatarKir Kolyshkin <kir@openvz.org>
      Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
      d5df3bf2
    • Kir Kolyshkin's avatar
      Makefile.install: fix uninstall target · e906f7cd
      Kir Kolyshkin authored
      It was not working:
      
      > $ make DESTDIR=`pwd`/inst3 uninstall
      >  UNINSTALL crit.1
      >  UNINSTALL criu.8
      >  UNINSTALL libcriu.so
      >  UNINSTALL pkgconfig/criu.pc
      >  UNINSTALL crit
      > /media/ts/kir/git/criu/scripts/nmk/scripts/build.mk:83: criu/arch/x86/Makefile: Not a directory
      > make[2]: *** No rule to make target 'criu/arch/x86/Makefile'.  Stop.
      > Makefile:48: recipe for target 'criu/arch/x86/crtools.built-in.o' failed
      > make[1]: *** [criu/arch/x86/crtools.built-in.o] Error 2
      > Makefile.install:49: recipe for target 'uninstall' failed
      > make: *** [uninstall] Error 2
      
      This is a fix to commit 7a360484 ("build/make: return to make from top
      directory").
      Reviewed-by: 's avatarDmitry Safonov <dsafonov@virtuozzo.com>
      Signed-off-by: 's avatarKir Kolyshkin <kir@openvz.org>
      Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
      e906f7cd