Subject: Re: [vserver] util-vserver debian build warnings util-vserver 0.30.216-pre3004
From: Corey Wright <undefined@pobox.com>
Date: Wed, 28 Dec 2011 22:51:19 -0600
Wed, 28 Dec 2011 22:51:19 -0600
On Wed, 28 Dec 2011 19:02:21 +0100
Ghislain <gadnet@aqueos.com> wrote:

>   i just built packages for debian on : util-vserver 0.30.216-pre3004
> 
>   I got some warning so i thinked perhaps it could be interesting for 
> you to know:
> 
> dpkg-shlibdeps: warning: 
> debian/util-vserver-python/usr/lib/pyshared/python2.6/_libvserver.so 
> contains an unresolvable reference to symbol Py_BuildValue: it's 
> probably a plugin.
> dpkg-shlibdeps: warning: 12 other similar warnings have been skipped 
> (use -v to see them all).

that's expected as _libvserver.so is a python module ("plugin").  for
example, see the below transcript where i demonstrate how the same "issue"
exists for _snackmodule.so (from the python-newt package) and the undefined
symbol is located in the python interpreter (which loads _snackmodule.so and
_libvserver.so) which is rather difficult for dpkg-shlibdeps to
programmatically discern.

$ cat /etc/issue.net 
Ubuntu 10.04.3 LTS
$ ls /usr/lib/python2.6/dist-packages/_*.so
/usr/lib/python2.6/dist-packages/_snackmodule.so
/usr/lib/python2.6/dist-packages/_xapian.so
$ nm -D /usr/lib/python2.6/dist-packages/_snackmodule.so | grep Py_BuildValue
                 U Py_BuildValue
$ ldd /usr/lib/python2.6/dist-packages/_*.so
/usr/lib/python2.6/dist-packages/_snackmodule.so:
	linux-vdso.so.1 =>  (0x00007fffacdff000)
	libnewt.so.0.52 => /usr/lib/libnewt.so.0.52 (0x00007fd61e63f000)
	libc.so.6 => /lib/libc.so.6 (0x00007fd61e2bc000)
	libslang.so.2 => /lib/libslang.so.2 (0x00007fd61df57000)
	/lib64/ld-linux-x86-64.so.2 (0x00007fd61ea7d000)
	libdl.so.2 => /lib/libdl.so.2 (0x00007fd61dd53000)
	libm.so.6 => /lib/libm.so.6 (0x00007fd61dad0000)
$ nm -D $(which python) | grep Py_BuildValue
00000000004c4b30 T Py_BuildValue
00000000004c4a90 T _Py_BuildValue_SizeT

yes, that was on ubuntu lucid, not debian squeeze, as that's what the desktop
i'm current on runs, but as ubuntu is a debian derivative and lucid is not
that far removed from squeeze, it should be representative enough.

> dpkg-gencontrol: warning: Depends field of package util-vserver: unknown 
> substitution variable ${shlibs:Depends}
> dpkg-gencontrol: warning: Depends field of package util-vserver-core: 
> unknown substitution variable ${shlibs:Depends}
> dpkg-gencontrol: warning: Depends field of package util-vserver-sysv: 
> unknown substitution variable ${shlibs:Depends}
> dpkg-gencontrol: warning: Depends field of package libvserver0-dev: 
> unknown substitution variable ${shlibs:Depends}

these warnings are because dh_shlibdeps is not adding any associated lines
(eg "shlibs:Depends=libc6 (>= 2.3)") to the associated binary packages'
substvars files (eg
util-vserver-0.30.216-pre3004/debian/util-vserver.substvars) and that's
because those binary packages (ie util-vserver{,-core,-sysv} &
libvserver0-dev) don't depend on any shared libraries (ie they don't contain
any dynamically linked executables/libraries).

> dpkg-gencontrol: warning: package util-vserver-python: unused 
> substitution variable ${python:Versions}

i believe this is because dh_python2 is not getting called and providing the
substitution for that variable.  the util-vserver-python binary package
should depend on a version of python, but it doesn't (something that i just
noticed) because this substitution variable is going unused.  i think the
debian/control file is either the default or too generic and therefore not
calling dh_python2 which would figure out which version of python the binary
package was built against and provide the necessary substitution.

do not interpret any of the above as a proficiency in building debian
packages.  i merely understand the associated concepts enough to reverse
engineer the process when necessary, but i don't know enough specifics to
improve/correct the source package (except removing extraneous
"${shlibs:Depends}" from debian/control and somehow modifying debian/rules to
call dh_python2 for util-vserver-python).

>    created them on debian squeeze 64bits  with:
> 
> aptitude install build-essential debhelper  gawk dietlibc-dev 
> libnss3-dev po-debconf e2fslibs-dev pkg-config python-dev ctags;
> dpkg-buildpackage -rfakeroot;

i build the util-vserver source package on debian squeeze amd64 (server) and
ubuntu lucid amd64 (desktop/backup) as follows:

# apt-get install debhelper gawk dietlibc-dev net-tools vlan iptables procps module-init-tools
libnss3-dev po-debconf e2fslibs-dev pkg-config python-dev ctags
# dpkg-buildpackage -D -us -uc

of course i'm doing it in a minimal pbuilder chroot so i don't have to
install some packages (eg build-essential) but have to install others (eg
net-tools, vlan, iptables).

my build log for pre3004 is attached for comparison and the resulting binary
packages (ie libvserver0 and util-vserver{,-build,-core,-sysv}) appear to
install and execute properly.

> Regards,
> Ghislain.

corey
--
undefined@pobox.com


dpkg-buildpackage: export CFLAGS from dpkg-buildflags (origin: vendor): -g -O2
dpkg-buildpackage: export CPPFLAGS from dpkg-buildflags (origin: vendor): 
dpkg-buildpackage: export CXXFLAGS from dpkg-buildflags (origin: vendor): -g -O2
dpkg-buildpackage: export FFLAGS from dpkg-buildflags (origin: vendor): -g -O2
dpkg-buildpackage: export LDFLAGS from dpkg-buildflags (origin: vendor): 
dpkg-buildpackage: source package util-vserver
dpkg-buildpackage: source version 0.30.216-pre3004-1+udo60+1
dpkg-buildpackage: source changed by Corey Wright <undefined+vserver@pobox.com>
 dpkg-source --before-build util-vserver-0.30.216-pre3004
dpkg-buildpackage: host architecture amd64
 debian/rules clean
dh clean
   dh_testdir
   dh_auto_clean
   dh_clean
 dpkg-source -b util-vserver-0.30.216-pre3004
dpkg-source: warning: no source format specified in debian/source/format, see dpkg-source(1)
dpkg-source: info: using source format `1.0'
dpkg-source: info: building util-vserver in util-vserver_0.30.216-pre3004.orig.tar.gz
dpkg-source: info: building util-vserver in util-vserver_0.30.216-pre3004-1+udo60+1.diff.gz
dpkg-source: warning: the diff modifies the following upstream files: 
 scripts/vserver.start
 scripts/vserver.stop
dpkg-source: info: use the '3.0 (quilt)' format to have separate and documented changes
to upstream files, see dpkg-source(1)
dpkg-source: info: building util-vserver in util-vserver_0.30.216-pre3004-1+udo60+1.dsc
 debian/rules build
dh build
   dh_testdir
   debian/rules override_dh_auto_configure
make[1]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004'
dh_auto_configure -- --with-initrddir=/etc/init.d --enable-release \
		--enable-apis=NOLEGACY --with-initscripts=sysv
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... none
checking whether ln -s works... yes
checking whether gcc and cc understand -c and -o together... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking whether gcc is a C99 compiler... yes
checking for awk... /usr/bin/awk
checking for cat... /bin/cat
checking for chown... /bin/chown
checking for cmp... /usr/bin/cmp
checking for cp... /bin/cp
checking for dirname... /usr/bin/dirname
checking for egrep... /bin/egrep
checking for env... /usr/bin/env
checking for grep... /bin/grep
checking for ln... /bin/ln
checking for mkdir... /bin/mkdir
checking for mkfifo... /usr/bin/mkfifo
checking for mktemp... /bin/mktemp
checking for mount... /bin/mount
checking for mv... /bin/mv
checking for nice... /usr/bin/nice
checking for ps... /bin/ps
checking for rm... /bin/rm
checking for rmdir... /bin/rmdir
checking for sed... /bin/sed
checking for sh... /bin/sh
checking for tac... /usr/bin/tac
checking for tar... /bin/tar
checking for touch... /usr/bin/touch
checking for tty... /usr/bin/tty
checking for umount... /bin/umount
checking for wc... /usr/bin/wc
checking for ip... /sbin/ip
checking for iptables... /sbin/iptables
checking for modprobe... /sbin/modprobe
checking for nameif... /sbin/nameif
checking for nohup... /usr/bin/nohup
checking for rmmod... /sbin/rmmod
checking for vconfig... /sbin/vconfig
checking for wget... /usr/bin/wget
checking for ionice... /usr/bin/ionice
checking for file... /usr/bin/file
checking for gzip... /bin/gzip
checking for bzip2... /bin/bzip2
checking for cpio... no
checking for restore... no
checking for rsync... no
checking for strace... no
checking for fsck... /sbin/fsck
checking for find... /usr/bin/find
checking for doxygen... no
checking for xsltp... no
checking for xsltproc... no
checking whether the C-compiler accepts -Werror -W... yes
checking whether gcc accepts -std=c99... yes
checking whether gcc accepts -Wall... yes
checking whether gcc accepts -pedantic... yes
checking whether gcc accepts -W... yes
checking whether to enable extra optimizations... yes
checking whether gcc accepts -funit-at-a-time... yes
checking whether to enable debug-code in library... no
checking whether to enable expensive tests... no
checking for declarations in <linux/personality.h>... 
checking whether MMAP_PAGE_ZERO is declared... yes
checking whether ADDR_LIMIT_32BIT is declared... yes
checking whether SHORT_INODE is declared... yes
checking whether WHOLE_SECONDS is declared... yes
checking whether STICKY_TIMEOUTS is declared... yes
checking whether ADDR_LIMIT_3GB is declared... yes
checking whether PER_LINUX is declared... yes
checking whether PER_LINUX_32BIT is declared... yes
checking whether PER_SVR4 is declared... yes
checking whether PER_SVR3 is declared... yes
checking whether PER_SCOSVR3 is declared... yes
checking whether PER_OSR5 is declared... yes
checking whether PER_WYSEV386 is declared... yes
checking whether PER_ISCR4 is declared... yes
checking whether PER_BSD is declared... yes
checking whether PER_SUNOS is declared... yes
checking whether PER_XENIX is declared... yes
checking whether PER_LINUX32 is declared... yes
checking whether PER_LINUX32_3GB is declared... yes
checking whether PER_IRIX32 is declared... yes
checking whether PER_IRIXN32 is declared... yes
checking whether PER_IRIX64 is declared... yes
checking whether PER_RISCOS is declared... yes
checking whether PER_SOLARIS is declared... yes
checking whether PER_UW7 is declared... yes
checking whether PER_HPUX is declared... yes
checking whether PER_OSF4 is declared... yes
checking for initrddir... /etc/init.d
checking whether to enable release-mode... yes
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... (cached) /bin/grep
checking for egrep... (cached) /bin/egrep
checking for number of syscall 'vserver'... 236/glibc
checking whether to use alternative _syscallX macros... yes
checking for syscall(2) invocation method... auto
checking which syscall(2) invocation works... fast
checking whether to enable dietlibc... yes (autodetected, 0.32)
checking whether dietlibc supports C99... yes
checking whether dietlibc declares syscall... yes
checking whether dietlibc needs '-lcompat'... no
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking the maximum length of command line arguments... 3458764513820540925
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format...
func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... /bin/rm: cannot remove `conftest*': No such
file or directory
yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries...
yes
checking whether -lc should be explicitly linked in... /bin/rm: cannot remove `conftest*':
No such file or directory
no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking which vserver-rootdir is to use... /vservers
checking for git2cl... no
checking whether to use internal kernel headers... yes
checking for supported APIs... compat,v11,fscompat,v13,net,v21,v22,v23,netv2
checking for ext2fs-headers... e2fsprogs
checking ext2fs/ext2_fs.h usability... yes
checking ext2fs/ext2_fs.h presence... yes
checking for ext2fs/ext2_fs.h... yes
checking for vserver... no
checking whether MS_MOVE is declared... yes
checking for xid_t... no
checking for nid_t... no
checking for tag_t... no
checking sys/capability.h usability... no
checking sys/capability.h presence... no
checking for sys/capability.h... no
checking beecrypt/beecrypt.h usability... no
checking beecrypt/beecrypt.h presence... no
checking for beecrypt/beecrypt.h... no
checking for NSS... yes
configure: using NSS as crypto api
checking for host initscripts... sysv
checking for a Python interpreter with version >= 2.4... python
checking for python... /usr/bin/python
checking for python version... 2.6
checking for python platform... linux2
checking for python script directory... ${prefix}/lib/python2.6/dist-packages
checking for python extension module directory... ${exec_prefix}/lib/python2.6/dist-packages
checking for ctags... /usr/bin/ctags
configure: creating ./config.status
config.status: creating util-vserver.spec
config.status: creating Makefile
config.status: creating distrib/Makefile
config.status: creating lib/apidoc/Doxyfile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
/bin/rm: cannot remove `libtoolT': No such file or directory
configure:

util-vserver 0.30.216-pre3004

Features:
		       CC: gcc, gcc (Debian 4.4.5-8) 4.4.5
                 CPPFLAGS: ''
                   CFLAGS: '-g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time'
               build/host: x86_64-pc-linux-gnu/x86_64-pc-linux-gnu
             Use dietlibc: yes
       Build C++ programs: 
       Build C99 programs: yes
           Available APIs: compat,v11,fscompat,v13,net,v21,v22,v23,netv2
            ext2fs Source: e2fsprogs
    syscall(2) invocation: alternative
      vserver(2) syscall#: 236/glibc
               crypto api: nss
          python bindings: yes
   use library versioning: yes

Paths:
                   prefix: /usr
        sysconf-Directory: /etc
            cfg-Directory: /etc/vservers
         initrd-Directory: /etc/init.d
       pkgstate-Directory: /var/run/vservers
          vserver-Rootdir: /vservers

make[1]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004'
   dh_auto_build
make[1]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004'
/bin/sed -e '...' pathconfig.h.pathsubst >pathconfig.h
make[2]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004'
Making clean in distrib
make[3]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004/distrib'
make[3]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004/distrib'
Making clean in .
make[3]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004'
 rm -f lib/testsuite/cflags lib/testsuite/personality lib/testsuite/fmt lib/testsuite/parselimit
src/testsuite/rpm-fake-test src/testsuite/hashcalc src/testsuite/hashcalc-plain src/testsuite/vunify-functest
src/testsuite/chcontext-test src/testsuite/chbind-test ensc_vector/testsuite/test1 ensc_vector/testsuite/test2
lib_internal/testsuite/command lib_internal/testsuite/filecfg-ml lib_internal/testsuite/copy
lib_internal/testsuite/isnumber lib_internal/testsuite/isnumber-gnu lib_internal/testsuite/sigbus
lib_internal/testsuite/sigbus-gnu lib_internal/testsuite/matchlist lib_internal/testsuite/matchlist-gnu
lib_internal/testsuite/crypto lib_internal/testsuite/crypto-speed
 rm -f src/ifspec src/listdevip src/parserpmdump src/rebootmgr src/showperm src/vreboot
rm -f "lib/so_locations"
 rm -f tests/escaperoot tests/forkbomb tests/testipc tests/testlimit tests/testopenf
tests/getctx tests/getinitpid tests/vserver-info
rm -f "src/so_locations"
 rm -f src/capchroot src/chain-echo src/chcontext-compat src/check-unixfile src/chroot-sh
src/fakerunlevel src/filetime src/keep-ctx-alive src/lockfile src/readlink src/save_ctxinfo
src/secure-mount src/mask2prefix src/exec-ulimit src/rpm-fake-resolver src/vshelper-sync
src/sigexec src/chbind-compat src/vsysctl src/h2ext src/tunctl src/exec-remount src/vunify
src/vcopy src/vclone src/vhashify
rm -f "python/so_locations"
 rm -f src/exec-cd src/lsxid src/chxid src/vps src/showattr src/setattr src/reducecap
src/vdu src/vattribute src/vcontext src/vlimit src/vkill src/vrsetup src/vsched src/vserver-stat
src/vserver-info src/vuname src/vwait src/ncontext src/nattribute src/naddress src/vdevmap
src/vtag src/vspace src/vmemctrl src/vdlimit
make[3]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004'
make[2]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004'
make[2]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004'
/bin/sed -e '...' pathconfig.h.pathsubst >pathconfig.h
make[2]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004'
make  all-recursive
make[2]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004'
Making all in .
make[3]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004'
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall.o
`test -f 'lib/syscall.c' || echo './'`lib/syscall.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-checkversion.o
`test -f 'lib/checkversion.c' || echo './'`lib/checkversion.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-checkconfig.o
`test -f 'lib/checkconfig.c' || echo './'`lib/checkconfig.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-isdirectory.o
`test -f 'lib/isdirectory.c' || echo './'`lib/isdirectory.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-isfile.o
`test -f 'lib/isfile.c' || echo './'`lib/isfile.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-islink.o
`test -f 'lib/islink.c' || echo './'`lib/islink.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-getnbipv4root.o
`test -f 'lib/getnbipv4root.c' || echo './'`lib/getnbipv4root.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-getversion.o
`test -f 'lib/getversion.c' || echo './'`lib/getversion.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-capabilities.o
`test -f 'lib/capabilities.c' || echo './'`lib/capabilities.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-getfilecontext.o
`test -f 'lib/getfilecontext.c' || echo './'`lib/getfilecontext.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-getinsecurebcaps.o
`test -f 'lib/getinsecurebcaps.c' || echo './'`lib/getinsecurebcaps.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-getxidtype.o
`test -f 'lib/getxidtype.c' || echo './'`lib/getxidtype.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-isdynamicxid.o
`test -f 'lib/isdynamicxid.c' || echo './'`lib/isdynamicxid.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-issupported.o
`test -f 'lib/issupported.c' || echo './'`lib/issupported.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-issupportedstring.o
`test -f 'lib/issupportedstring.c' || echo './'`lib/issupportedstring.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-listparser_uint32.o
`test -f 'lib/listparser_uint32.c' || echo './'`lib/listparser_uint32.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-listparser_uint64.o
`test -f 'lib/listparser_uint64.c' || echo './'`lib/listparser_uint64.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-personalityflag.o
`test -f 'lib/personalityflag.c' || echo './'`lib/personalityflag.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-personalityflag_list.o
`test -f 'lib/personalityflag_list.c' || echo './'`lib/personalityflag_list.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-personalitytype.o
`test -f 'lib/personalitytype.c' || echo './'`lib/personalitytype.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall-syscall.o
`test -f 'lib/syscall-syscall.c' || echo './'`lib/syscall-syscall.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-val2text-t2v-uint32.o
`test -f 'lib/val2text-t2v-uint32.c' || echo './'`lib/val2text-t2v-uint32.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-val2text-t2v-uint64.o
`test -f 'lib/val2text-t2v-uint64.c' || echo './'`lib/val2text-t2v-uint64.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-val2text-v2t-uint32.o
`test -f 'lib/val2text-v2t-uint32.c' || echo './'`lib/val2text-v2t-uint32.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-val2text-v2t-uint64.o
`test -f 'lib/val2text-v2t-uint64.c' || echo './'`lib/val2text-v2t-uint64.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-parselimit.o
`test -f 'lib/parselimit.c' || echo './'`lib/parselimit.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-getkernel.o
`test -f 'lib/getkernel.c' || echo './'`lib/getkernel.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-getprocentry-legacy.o
`test -f 'lib/getprocentry-legacy.c' || echo './'`lib/getprocentry-legacy.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-cflags-compat.o
`test -f 'lib/cflags-compat.c' || echo './'`lib/cflags-compat.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-cflags_list-compat.o
`test -f 'lib/cflags_list-compat.c' || echo './'`lib/cflags_list-compat.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-comparevserverbyid.o
`test -f 'lib/comparevserverbyid.c' || echo './'`lib/comparevserverbyid.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-createskeleton.o
`test -f 'lib/createskeleton.c' || echo './'`lib/createskeleton.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-getvserverbyctx.o
`test -f 'lib/getvserverbyctx.c' || echo './'`lib/getvserverbyctx.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-getvservercfgstyle.o
`test -f 'lib/getvservercfgstyle.c' || echo './'`lib/getvservercfgstyle.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-getvserverappdir.o
`test -f 'lib/getvserverappdir.c' || echo './'`lib/getvserverappdir.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-getvservercfgdir.o
`test -f 'lib/getvservercfgdir.c' || echo './'`lib/getvservercfgdir.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-getvserverctx.o
`test -f 'lib/getvserverctx.c' || echo './'`lib/getvserverctx.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-getvservername.o
`test -f 'lib/getvservername.c' || echo './'`lib/getvservername.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-getvservervdir.o
`test -f 'lib/getvservervdir.c' || echo './'`lib/getvservervdir.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-xidopt2xid.o
`test -f 'lib/xidopt2xid.c' || echo './'`lib/xidopt2xid.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-nidopt2nid.o
`test -f 'lib/nidopt2nid.c' || echo './'`lib/nidopt2nid.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-tagopt2tag.o
`test -f 'lib/tagopt2tag.c' || echo './'`lib/tagopt2tag.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-exitlikeprocess.o
`test -f 'lib/exitlikeprocess.c' || echo './'`lib/exitlikeprocess.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_rlimit.o
`test -f 'lib/syscall_rlimit.c' || echo './'`lib/syscall_rlimit.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_kill.o
`test -f 'lib/syscall_kill.c' || echo './'`lib/syscall_kill.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_ctxcreate.o
`test -f 'lib/syscall_ctxcreate.c' || echo './'`lib/syscall_ctxcreate.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_ctxmigrate.o
`test -f 'lib/syscall_ctxmigrate.c' || echo './'`lib/syscall_ctxmigrate.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_cleanupnamespace.o
`test -f 'lib/syscall_cleanupnamespace.c' || echo './'`lib/syscall_cleanupnamespace.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_enternamespace.o
`test -f 'lib/syscall_enternamespace.c' || echo './'`lib/syscall_enternamespace.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_getccaps.o
`test -f 'lib/syscall_getccaps.c' || echo './'`lib/syscall_getccaps.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_getcflags.o
`test -f 'lib/syscall_getcflags.c' || echo './'`lib/syscall_getcflags.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_getiattr.o
`test -f 'lib/syscall_getiattr.c' || echo './'`lib/syscall_getiattr.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_getncaps.o
`test -f 'lib/syscall_getncaps.c' || echo './'`lib/syscall_getncaps.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_getnflags.o
`test -f 'lib/syscall_getnflags.c' || echo './'`lib/syscall_getnflags.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_getnxinfo.o
`test -f 'lib/syscall_getnxinfo.c' || echo './'`lib/syscall_getnxinfo.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_gettasknid.o
`test -f 'lib/syscall_gettasknid.c' || echo './'`lib/syscall_gettasknid.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_gettaskxid.o
`test -f 'lib/syscall_gettaskxid.c' || echo './'`lib/syscall_gettaskxid.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_getvhiname.o
`test -f 'lib/syscall_getvhiname.c' || echo './'`lib/syscall_getvhiname.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_getvxinfo.o
`test -f 'lib/syscall_getvxinfo.c' || echo './'`lib/syscall_getvxinfo.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_netadd.o
`test -f 'lib/syscall_netadd.c' || echo './'`lib/syscall_netadd.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_netcreate.o
`test -f 'lib/syscall_netcreate.c' || echo './'`lib/syscall_netcreate.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_netmigrate.o
`test -f 'lib/syscall_netmigrate.c' || echo './'`lib/syscall_netmigrate.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_netremove.o
`test -f 'lib/syscall_netremove.c' || echo './'`lib/syscall_netremove.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_setccaps.o
`test -f 'lib/syscall_setccaps.c' || echo './'`lib/syscall_setccaps.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_setcflags.o
`test -f 'lib/syscall_setcflags.c' || echo './'`lib/syscall_setcflags.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_setiattr.o
`test -f 'lib/syscall_setiattr.c' || echo './'`lib/syscall_setiattr.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_setnamespace.o
`test -f 'lib/syscall_setnamespace.c' || echo './'`lib/syscall_setnamespace.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_setncaps.o
`test -f 'lib/syscall_setncaps.c' || echo './'`lib/syscall_setncaps.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_setnflags.o
`test -f 'lib/syscall_setnflags.c' || echo './'`lib/syscall_setnflags.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_setsched.o
`test -f 'lib/syscall_setsched.c' || echo './'`lib/syscall_setsched.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_setvhiname.o
`test -f 'lib/syscall_setvhiname.c' || echo './'`lib/syscall_setvhiname.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_waitexit.o
`test -f 'lib/syscall_waitexit.c' || echo './'`lib/syscall_waitexit.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-bcaps-v13.o
`test -f 'lib/bcaps-v13.c' || echo './'`lib/bcaps-v13.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-bcaps_list-v13.o
`test -f 'lib/bcaps_list-v13.c' || echo './'`lib/bcaps_list-v13.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-ccaps-v13.o
`test -f 'lib/ccaps-v13.c' || echo './'`lib/ccaps-v13.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-ccaps_list-v13.o
`test -f 'lib/ccaps_list-v13.c' || echo './'`lib/ccaps_list-v13.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-cflags-v13.o
`test -f 'lib/cflags-v13.c' || echo './'`lib/cflags-v13.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-cflags_list-v13.o
`test -f 'lib/cflags_list-v13.c' || echo './'`lib/cflags_list-v13.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-ncaps-net.o
`test -f 'lib/ncaps-net.c' || echo './'`lib/ncaps-net.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-ncaps_list-net.o
`test -f 'lib/ncaps_list-net.c' || echo './'`lib/ncaps_list-net.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-nflags-net.o
`test -f 'lib/nflags-net.c' || echo './'`lib/nflags-net.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-nflags_list-net.o
`test -f 'lib/nflags_list-net.c' || echo './'`lib/nflags_list-net.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_adddlimit.o
`test -f 'lib/syscall_adddlimit.c' || echo './'`lib/syscall_adddlimit.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_getdlimit.o
`test -f 'lib/syscall_getdlimit.c' || echo './'`lib/syscall_getdlimit.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_remdlimit.o
`test -f 'lib/syscall_remdlimit.c' || echo './'`lib/syscall_remdlimit.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_setdlimit.o
`test -f 'lib/syscall_setdlimit.c' || echo './'`lib/syscall_setdlimit.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_rlimitstat.o
`test -f 'lib/syscall_rlimitstat.c' || echo './'`lib/syscall_rlimitstat.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_resetminmax.o
`test -f 'lib/syscall_resetminmax.c' || echo './'`lib/syscall_resetminmax.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_getvci.o
`test -f 'lib/syscall_getvci.c' || echo './'`lib/syscall_getvci.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_virtstat.o
`test -f 'lib/syscall_virtstat.c' || echo './'`lib/syscall_virtstat.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_ctxstat.o
`test -f 'lib/syscall_ctxstat.c' || echo './'`lib/syscall_ctxstat.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_getspacemask.o
`test -f 'lib/syscall_getspacemask.c' || echo './'`lib/syscall_getspacemask.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_setmapping.o
`test -f 'lib/syscall_setmapping.c' || echo './'`lib/syscall_setmapping.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_unsetmapping.o
`test -f 'lib/syscall_unsetmapping.c' || echo './'`lib/syscall_unsetmapping.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_schedinfo.o
`test -f 'lib/syscall_schedinfo.c' || echo './'`lib/syscall_schedinfo.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_getsched.o
`test -f 'lib/syscall_getsched.c' || echo './'`lib/syscall_getsched.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_fsetiattr.o
`test -f 'lib/syscall_fsetiattr.c' || echo './'`lib/syscall_fsetiattr.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_fgetiattr.o
`test -f 'lib/syscall_fgetiattr.c' || echo './'`lib/syscall_fgetiattr.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_tagmigrate.o
`test -f 'lib/syscall_tagmigrate.c' || echo './'`lib/syscall_tagmigrate.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_tagcreate.o
`test -f 'lib/syscall_tagcreate.c' || echo './'`lib/syscall_tagcreate.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_tasktag.o
`test -f 'lib/syscall_tasktag.c' || echo './'`lib/syscall_tasktag.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_getbadness.o
`test -f 'lib/syscall_getbadness.c' || echo './'`lib/syscall_getbadness.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_setbadness.o
`test -f 'lib/syscall_setbadness.c' || echo './'`lib/syscall_setbadness.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_setumask.o
`test -f 'lib/syscall_setumask.c' || echo './'`lib/syscall_setumask.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_getumask.o
`test -f 'lib/syscall_getumask.c' || echo './'`lib/syscall_getumask.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-syscall_getspacedefault.o
`test -f 'lib/syscall_getspacedefault.c' || echo './'`lib/syscall_getspacedefault.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-umask-v23.o
`test -f 'lib/umask-v23.c' || echo './'`lib/umask-v23.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_a-umask_list-v23.o
`test -f 'lib/umask_list-v23.c' || echo './'`lib/umask_list-v23.c
lib/umask_list-v23.c: In function 'vc_text2umask_err':
lib/umask_list-v23.c:31: warning: implicit declaration of function 'vc_text2umask'
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_fmt/lib_libvserver_a-fmt-32.o
`test -f 'ensc_fmt/fmt-32.c' || echo './'`ensc_fmt/fmt-32.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_fmt/lib_libvserver_a-fmt-64.o
`test -f 'ensc_fmt/fmt-64.c' || echo './'`ensc_fmt/fmt-64.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_fmt/lib_libvserver_a-fmtx-32.o
`test -f 'ensc_fmt/fmtx-32.c' || echo './'`ensc_fmt/fmtx-32.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_fmt/lib_libvserver_a-fmtx-64.o
`test -f 'ensc_fmt/fmtx-64.c' || echo './'`ensc_fmt/fmtx-64.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_fmt/lib_libvserver_a-fmt-tai64n.o
`test -f 'ensc_fmt/fmt-tai64n.c' || echo './'`ensc_fmt/fmt-tai64n.c
rm -f lib/libvserver.a
ar cru lib/libvserver.a lib/lib_libvserver_a-syscall.o lib/lib_libvserver_a-checkversion.o
lib/lib_libvserver_a-checkconfig.o lib/lib_libvserver_a-isdirectory.o lib/lib_libvserver_a-isfile.o
lib/lib_libvserver_a-islink.o lib/lib_libvserver_a-getnbipv4root.o lib/lib_libvserver_a-getversion.o
lib/lib_libvserver_a-capabilities.o lib/lib_libvserver_a-getfilecontext.o lib/lib_libvserver_a-getinsecurebcaps.o
lib/lib_libvserver_a-getxidtype.o lib/lib_libvserver_a-isdynamicxid.o lib/lib_libvserver_a-issupported.o
lib/lib_libvserver_a-issupportedstring.o lib/lib_libvserver_a-listparser_uint32.o lib/lib_libvserver_a-listparser_uint64.o
lib/lib_libvserver_a-personalityflag.o lib/lib_libvserver_a-personalityflag_list.o lib/lib_libvserver_a-personalitytype.o
lib/lib_libvserver_a-syscall-syscall.o lib/lib_libvserver_a-val2text-t2v-uint32.o lib/lib_libvserver_a-val2text-t2v-uint64.o
lib/lib_libvserver_a-val2text-v2t-uint32.o lib/lib_libvserver_a-val2text-v2t-uint64.o
lib/lib_libvserver_a-parselimit.o lib/lib_libvserver_a-getkernel.o lib/lib_libvserver_a-getprocentry-legacy.o
lib/lib_libvserver_a-cflags-compat.o lib/lib_libvserver_a-cflags_list-compat.o lib/lib_libvserver_a-comparevserverbyid.o
lib/lib_libvserver_a-createskeleton.o lib/lib_libvserver_a-getvserverbyctx.o lib/lib_libvserver_a-getvservercfgstyle.o
lib/lib_libvserver_a-getvserverappdir.o lib/lib_libvserver_a-getvservercfgdir.o lib/lib_libvserver_a-getvserverctx.o
lib/lib_libvserver_a-getvservername.o lib/lib_libvserver_a-getvservervdir.o lib/lib_libvserver_a-xidopt2xid.o
lib/lib_libvserver_a-nidopt2nid.o lib/lib_libvserver_a-tagopt2tag.o lib/lib_libvserver_a-exitlikeprocess.o
lib/lib_libvserver_a-syscall_rlimit.o lib/lib_libvserver_a-syscall_kill.o lib/lib_libvserver_a-syscall_ctxcreate.o
lib/lib_libvserver_a-syscall_ctxmigrate.o lib/lib_libvserver_a-syscall_cleanupnamespace.o
lib/lib_libvserver_a-syscall_enternamespace.o lib/lib_libvserver_a-syscall_getccaps.o
lib/lib_libvserver_a-syscall_getcflags.o lib/lib_libvserver_a-syscall_getiattr.o lib/lib_libvserver_a-syscall_getncaps.o
lib/lib_libvserver_a-syscall_getnflags.o lib/lib_libvserver_a-syscall_getnxinfo.o lib/lib_libvserver_a-syscall_gettasknid.o
lib/lib_libvserver_a-syscall_gettaskxid.o lib/lib_libvserver_a-syscall_getvhiname.o
lib/lib_libvserver_a-syscall_getvxinfo.o lib/lib_libvserver_a-syscall_netadd.o lib/lib_libvserver_a-syscall_netcreate.o
lib/lib_libvserver_a-syscall_netmigrate.o lib/lib_libvserver_a-syscall_netremove.o lib/lib_libvserver_a-syscall_setccaps.o
lib/lib_libvserver_a-syscall_setcflags.o lib/lib_libvserver_a-syscall_setiattr.o lib/lib_libvserver_a-syscall_setnamespace.o
lib/lib_libvserver_a-syscall_setncaps.o lib/lib_libvserver_a-syscall_setnflags.o lib/lib_libvserver_a-syscall_setsched.o
lib/lib_libvserver_a-syscall_setvhiname.o lib/lib_libvserver_a-syscall_waitexit.o lib/lib_libvserver_a-bcaps-v13.o
lib/lib_libvserver_a-bcaps_list-v13.o lib/lib_libvserver_a-ccaps-v13.o lib/lib_libvserver_a-ccaps_list-v13.o
lib/lib_libvserver_a-cflags-v13.o lib/lib_libvserver_a-cflags_list-v13.o lib/lib_libvserver_a-ncaps-net.o
lib/lib_libvserver_a-ncaps_list-net.o lib/lib_libvserver_a-nflags-net.o lib/lib_libvserver_a-nflags_list-net.o
lib/lib_libvserver_a-syscall_adddlimit.o lib/lib_libvserver_a-syscall_getdlimit.o lib/lib_libvserver_a-syscall_remdlimit.o
lib/lib_libvserver_a-syscall_setdlimit.o lib/lib_libvserver_a-syscall_rlimitstat.o lib/lib_libvserver_a-syscall_resetminmax.o
lib/lib_libvserver_a-syscall_getvci.o lib/lib_libvserver_a-syscall_virtstat.o lib/lib_libvserver_a-syscall_ctxstat.o
lib/lib_libvserver_a-syscall_getspacemask.o lib/lib_libvserver_a-syscall_setmapping.o
lib/lib_libvserver_a-syscall_unsetmapping.o lib/lib_libvserver_a-syscall_schedinfo.o
lib/lib_libvserver_a-syscall_getsched.o lib/lib_libvserver_a-syscall_fsetiattr.o lib/lib_libvserver_a-syscall_fgetiattr.o
 lib/lib_libvserver_a-syscall_tagmigrate.o lib/lib_libvserver_a-syscall_tagcreate.o
lib/lib_libvserver_a-syscall_tasktag.o lib/lib_libvserver_a-syscall_getbadness.o lib/lib_libvserver_a-syscall_setbadness.o
lib/lib_libvserver_a-syscall_setumask.o lib/lib_libvserver_a-syscall_getumask.o lib/lib_libvserver_a-syscall_getspacedefault.o
lib/lib_libvserver_a-umask-v23.o lib/lib_libvserver_a-umask_list-v23.o ensc_fmt/lib_libvserver_a-fmt-32.o
ensc_fmt/lib_libvserver_a-fmt-64.o ensc_fmt/lib_libvserver_a-fmtx-32.o ensc_fmt/lib_libvserver_a-fmtx-64.o
ensc_fmt/lib_libvserver_a-fmt-tai64n.o 
ranlib lib/libvserver.a
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_glibc_a-vector-clear.o
`test -f 'ensc_vector/vector-clear.c' || echo './'`ensc_vector/vector-clear.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_glibc_a-vector-foreach.o
`test -f 'ensc_vector/vector-foreach.c' || echo './'`ensc_vector/vector-foreach.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_glibc_a-vector-free.o
`test -f 'ensc_vector/vector-free.c' || echo './'`ensc_vector/vector-free.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_glibc_a-vector-init.o
`test -f 'ensc_vector/vector-init.c' || echo './'`ensc_vector/vector-init.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_glibc_a-vector-insert.o
`test -f 'ensc_vector/vector-insert.c' || echo './'`ensc_vector/vector-insert.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_glibc_a-vector-popback.o
`test -f 'ensc_vector/vector-popback.c' || echo './'`ensc_vector/vector-popback.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_glibc_a-vector-pushback.o
`test -f 'ensc_vector/vector-pushback.c' || echo './'`ensc_vector/vector-pushback.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_glibc_a-vector-resize.o
`test -f 'ensc_vector/vector-resize.c' || echo './'`ensc_vector/vector-resize.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_glibc_a-vector-search.o
`test -f 'ensc_vector/vector-search.c' || echo './'`ensc_vector/vector-search.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_glibc_a-vector-searchselforg.o
`test -f 'ensc_vector/vector-searchselforg.c' || echo './'`ensc_vector/vector-searchselforg.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_glibc_a-vector-sort.o
`test -f 'ensc_vector/vector-sort.c' || echo './'`ensc_vector/vector-sort.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_glibc_a-vector-unique.o
`test -f 'ensc_vector/vector-unique.c' || echo './'`ensc_vector/vector-unique.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_glibc_a-vector-zeroend.o
`test -f 'ensc_vector/vector-zeroend.c' || echo './'`ensc_vector/vector-zeroend.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_glibc_a-list-at.o
`test -f 'ensc_vector/list-at.c' || echo './'`ensc_vector/list-at.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_glibc_a-list-add.o
`test -f 'ensc_vector/list-add.c' || echo './'`ensc_vector/list-add.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_glibc_a-list-free.o
`test -f 'ensc_vector/list-free.c' || echo './'`ensc_vector/list-free.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_glibc_a-list-init.o
`test -f 'ensc_vector/list-init.c' || echo './'`ensc_vector/list-init.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_glibc_a-list-insertinternal.o
`test -f 'ensc_vector/list-insertinternal.c' || echo './'`ensc_vector/list-insertinternal.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_glibc_a-list-search.o
`test -f 'ensc_vector/list-search.c' || echo './'`ensc_vector/list-search.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_glibc_a-list-searchselforg.o
`test -f 'ensc_vector/list-searchselforg.c' || echo './'`ensc_vector/list-searchselforg.c
rm -f libensc_vector-glibc.a
ar cru libensc_vector-glibc.a ensc_vector/libensc_vector_glibc_a-vector-clear.o ensc_vector/libensc_vector_glibc_a-vector-foreach.o
ensc_vector/libensc_vector_glibc_a-vector-free.o ensc_vector/libensc_vector_glibc_a-vector-init.o
ensc_vector/libensc_vector_glibc_a-vector-insert.o ensc_vector/libensc_vector_glibc_a-vector-popback.o
ensc_vector/libensc_vector_glibc_a-vector-pushback.o ensc_vector/libensc_vector_glibc_a-vector-resize.o
ensc_vector/libensc_vector_glibc_a-vector-search.o ensc_vector/libensc_vector_glibc_a-vector-searchselforg.o
ensc_vector/libensc_vector_glibc_a-vector-sort.o ensc_vector/libensc_vector_glibc_a-vector-unique.o
ensc_vector/libensc_vector_glibc_a-vector-zeroend.o ensc_vector/libensc_vector_glibc_a-list-at.o
ensc_vector/libensc_vector_glibc_a-list-add.o ensc_vector/libensc_vector_glibc_a-list-free.o
ensc_vector/libensc_vector_glibc_a-list-init.o ensc_vector/libensc_vector_glibc_a-list-insertinternal.o
ensc_vector/libensc_vector_glibc_a-list-search.o ensc_vector/libensc_vector_glibc_a-list-searchselforg.o

ranlib libensc_vector-glibc.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_diet_a-vector-clear.o
`test -f 'ensc_vector/vector-clear.c' || echo './'`ensc_vector/vector-clear.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_diet_a-vector-foreach.o
`test -f 'ensc_vector/vector-foreach.c' || echo './'`ensc_vector/vector-foreach.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_diet_a-vector-free.o
`test -f 'ensc_vector/vector-free.c' || echo './'`ensc_vector/vector-free.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_diet_a-vector-init.o
`test -f 'ensc_vector/vector-init.c' || echo './'`ensc_vector/vector-init.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_diet_a-vector-insert.o
`test -f 'ensc_vector/vector-insert.c' || echo './'`ensc_vector/vector-insert.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_diet_a-vector-popback.o
`test -f 'ensc_vector/vector-popback.c' || echo './'`ensc_vector/vector-popback.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_diet_a-vector-pushback.o
`test -f 'ensc_vector/vector-pushback.c' || echo './'`ensc_vector/vector-pushback.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_diet_a-vector-resize.o
`test -f 'ensc_vector/vector-resize.c' || echo './'`ensc_vector/vector-resize.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_diet_a-vector-search.o
`test -f 'ensc_vector/vector-search.c' || echo './'`ensc_vector/vector-search.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_diet_a-vector-searchselforg.o
`test -f 'ensc_vector/vector-searchselforg.c' || echo './'`ensc_vector/vector-searchselforg.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_diet_a-vector-sort.o
`test -f 'ensc_vector/vector-sort.c' || echo './'`ensc_vector/vector-sort.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_diet_a-vector-unique.o
`test -f 'ensc_vector/vector-unique.c' || echo './'`ensc_vector/vector-unique.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_diet_a-vector-zeroend.o
`test -f 'ensc_vector/vector-zeroend.c' || echo './'`ensc_vector/vector-zeroend.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_diet_a-list-at.o
`test -f 'ensc_vector/list-at.c' || echo './'`ensc_vector/list-at.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_diet_a-list-add.o
`test -f 'ensc_vector/list-add.c' || echo './'`ensc_vector/list-add.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_diet_a-list-free.o
`test -f 'ensc_vector/list-free.c' || echo './'`ensc_vector/list-free.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_diet_a-list-init.o
`test -f 'ensc_vector/list-init.c' || echo './'`ensc_vector/list-init.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_diet_a-list-insertinternal.o
`test -f 'ensc_vector/list-insertinternal.c' || echo './'`ensc_vector/list-insertinternal.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_diet_a-list-search.o
`test -f 'ensc_vector/list-search.c' || echo './'`ensc_vector/list-search.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o ensc_vector/libensc_vector_diet_a-list-searchselforg.o
`test -f 'ensc_vector/list-searchselforg.c' || echo './'`ensc_vector/list-searchselforg.c
rm -f libensc_vector-diet.a
ar cru libensc_vector-diet.a ensc_vector/libensc_vector_diet_a-vector-clear.o ensc_vector/libensc_vector_diet_a-vector-foreach.o
ensc_vector/libensc_vector_diet_a-vector-free.o ensc_vector/libensc_vector_diet_a-vector-init.o
ensc_vector/libensc_vector_diet_a-vector-insert.o ensc_vector/libensc_vector_diet_a-vector-popback.o
ensc_vector/libensc_vector_diet_a-vector-pushback.o ensc_vector/libensc_vector_diet_a-vector-resize.o
ensc_vector/libensc_vector_diet_a-vector-search.o ensc_vector/libensc_vector_diet_a-vector-searchselforg.o
ensc_vector/libensc_vector_diet_a-vector-sort.o ensc_vector/libensc_vector_diet_a-vector-unique.o
ensc_vector/libensc_vector_diet_a-vector-zeroend.o ensc_vector/libensc_vector_diet_a-list-at.o
ensc_vector/libensc_vector_diet_a-list-add.o ensc_vector/libensc_vector_diet_a-list-free.o
ensc_vector/libensc_vector_diet_a-list-init.o ensc_vector/libensc_vector_diet_a-list-insertinternal.o
ensc_vector/libensc_vector_diet_a-list-search.o ensc_vector/libensc_vector_diet_a-list-searchselforg.o

ranlib libensc_vector-diet.a
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-errinfo-writeerrno.o
`test -f 'lib_internal/errinfo-writeerrno.c' || echo './'`lib_internal/errinfo-writeerrno.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-jailintotempdir.o
`test -f 'lib_internal/jailintotempdir.c' || echo './'`lib_internal/jailintotempdir.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-matchlist-appendfiles.o
`test -f 'lib_internal/matchlist-appendfiles.c' || echo './'`lib_internal/matchlist-appendfiles.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-matchlist-compare.o
`test -f 'lib_internal/matchlist-compare.c' || echo './'`lib_internal/matchlist-compare.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-matchlist-destroy.o
`test -f 'lib_internal/matchlist-destroy.c' || echo './'`lib_internal/matchlist-destroy.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-matchlist-init.o
`test -f 'lib_internal/matchlist-init.c' || echo './'`lib_internal/matchlist-init.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-matchlist-initmanually.o
`test -f 'lib_internal/matchlist-initmanually.c' || echo './'`lib_internal/matchlist-initmanually.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-matchlist-initrefserverlist.o
`test -f 'lib_internal/matchlist-initrefserverlist.c' || echo './'`lib_internal/matchlist-initrefserverlist.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-matchlist-printid.o
`test -f 'lib_internal/matchlist-printid.c' || echo './'`lib_internal/matchlist-printid.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-matchvserverinfo-free.o
`test -f 'lib_internal/matchvserverinfo-free.c' || echo './'`lib_internal/matchvserverinfo-free.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-pathinfo-append.o
`test -f 'lib_internal/pathinfo-append.c' || echo './'`lib_internal/pathinfo-append.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-pathinfo-test.o
`test -f 'lib_internal/pathinfo-test.c' || echo './'`lib_internal/pathinfo-test.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-switchtowatchxid.o
`test -f 'lib_internal/switchtowatchxid.c' || echo './'`lib_internal/switchtowatchxid.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-unify-deunify.o
`test -f 'lib_internal/unify-deunify.c' || echo './'`lib_internal/unify-deunify.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-unify-settime.o
`test -f 'lib_internal/unify-settime.c' || echo './'`lib_internal/unify-settime.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-unify-unify.o
`test -f 'lib_internal/unify-unify.c' || echo './'`lib_internal/unify-unify.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-unify-isiunlinkable.o
`test -f 'lib_internal/unify-isiunlinkable.c' || echo './'`lib_internal/unify-isiunlinkable.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-util-canonify.o
`test -f 'lib_internal/util-canonify.c' || echo './'`lib_internal/util-canonify.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-util-isnumber.o
`test -f 'lib_internal/util-isnumber.c' || echo './'`lib_internal/util-isnumber.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-util-isnumberunsigned.o
`test -f 'lib_internal/util-isnumberunsigned.c' || echo './'`lib_internal/util-isnumberunsigned.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-util-lockfile.o
`test -f 'lib_internal/util-lockfile.c' || echo './'`lib_internal/util-lockfile.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-util-safechdir.o
`test -f 'lib_internal/util-safechdir.c' || echo './'`lib_internal/util-safechdir.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-mkdir.o
`test -f 'lib_internal/mkdir.c' || echo './'`lib_internal/mkdir.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-command-appendparameter.o
`test -f 'lib_internal/command-appendparameter.c' || echo './'`lib_internal/command-appendparameter.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-command-setparams.o
`test -f 'lib_internal/command-setparams.c' || echo './'`lib_internal/command-setparams.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-command-exec.o
`test -f 'lib_internal/command-exec.c' || echo './'`lib_internal/command-exec.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-command-free.o
`test -f 'lib_internal/command-free.c' || echo './'`lib_internal/command-free.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-command-init.o
`test -f 'lib_internal/command-init.c' || echo './'`lib_internal/command-init.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-command-reset.o
`test -f 'lib_internal/command-reset.c' || echo './'`lib_internal/command-reset.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-command-wait.o
`test -f 'lib_internal/command-wait.c' || echo './'`lib_internal/command-wait.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-filecfg-iteratemultiline.o
`test -f 'lib_internal/filecfg-iteratemultiline.c' || echo './'`lib_internal/filecfg-iteratemultiline.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-filecfg-readentryflag.o
`test -f 'lib_internal/filecfg-readentryflag.c' || echo './'`lib_internal/filecfg-readentryflag.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-filecfg-readentrystr.o
`test -f 'lib_internal/filecfg-readentrystr.c' || echo './'`lib_internal/filecfg-readentrystr.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-matchlist-initbyvserver.o
`test -f 'lib_internal/matchlist-initbyvserver.c' || echo './'`lib_internal/matchlist-initbyvserver.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-matchvserverinfo-init.o
`test -f 'lib_internal/matchvserverinfo-init.c' || echo './'`lib_internal/matchvserverinfo-init.c
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_glibc_a-unify-copy.o
`test -f 'lib_internal/unify-copy.c' || echo './'`lib_internal/unify-copy.c
rm -f lib_internal/libinternal-glibc.a
ar cru lib_internal/libinternal-glibc.a lib_internal/lib_internal_libinternal_glibc_a-errinfo-writeerrno.o
lib_internal/lib_internal_libinternal_glibc_a-jailintotempdir.o lib_internal/lib_internal_libinternal_glibc_a-matchlist-appendfiles.o
lib_internal/lib_internal_libinternal_glibc_a-matchlist-compare.o lib_internal/lib_internal_libinternal_glibc_a-matchlist-destroy.o
lib_internal/lib_internal_libinternal_glibc_a-matchlist-init.o lib_internal/lib_internal_libinternal_glibc_a-matchlist-initmanually.o
lib_internal/lib_internal_libinternal_glibc_a-matchlist-initrefserverlist.o lib_internal/lib_internal_libinternal_glibc_a-matchlist-printid.o
lib_internal/lib_internal_libinternal_glibc_a-matchvserverinfo-free.o lib_internal/lib_internal_libinternal_glibc_a-pathinfo-append.o
lib_internal/lib_internal_libinternal_glibc_a-pathinfo-test.o lib_internal/lib_internal_libinternal_glibc_a-switchtowatchxid.o
lib_internal/lib_internal_libinternal_glibc_a-unify-deunify.o lib_internal/lib_internal_libinternal_glibc_a-unify-settime.o
lib_internal/lib_internal_libinternal_glibc_a-unify-unify.o lib_internal/lib_internal_libinternal_glibc_a-unify-isiunlinkable.o
lib_internal/lib_internal_libinternal_glibc_a-util-canonify.o lib_internal/lib_internal_libinternal_glibc_a-util-isnumber.o
lib_internal/lib_internal_libinternal_glibc_a-util-isnumberunsigned.o lib_internal/lib_internal_libinternal_glibc_a-util-lockfile.o
lib_internal/lib_internal_libinternal_glibc_a-util-safechdir.o lib_internal/lib_internal_libinternal_glibc_a-mkdir.o
lib_internal/lib_internal_libinternal_glibc_a-command-appendparameter.o lib_internal/lib_internal_libinternal_glibc_a-command-setparams.o
lib_internal/lib_internal_libinternal_glibc_a-command-exec.o lib_internal/lib_internal_libinternal_glibc_a-command-free.o
lib_internal/lib_internal_libinternal_glibc_a-command-init.o lib_internal/lib_internal_libinternal_glibc_a-command-reset.o
lib_internal/lib_internal_libinternal_glibc_a-command-wait.o lib_internal/lib_internal_libinternal_glibc_a-filecfg-iteratemultiline.o
lib_internal/lib_internal_libinternal_glibc_a-filecfg-readentryflag.o lib_internal/lib_internal_libinternal_glibc_a-filecfg-readentrystr.o
lib_internal/lib_internal_libinternal_glibc_a-matchlist-initbyvserver.o lib_internal/lib_internal_libinternal_glibc_a-matchvserverinfo-init.o
lib_internal/lib_internal_libinternal_glibc_a-unify-copy.o 
ranlib lib_internal/libinternal-glibc.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-errinfo-writeerrno.o
`test -f 'lib_internal/errinfo-writeerrno.c' || echo './'`lib_internal/errinfo-writeerrno.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-jailintotempdir.o
`test -f 'lib_internal/jailintotempdir.c' || echo './'`lib_internal/jailintotempdir.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-matchlist-appendfiles.o
`test -f 'lib_internal/matchlist-appendfiles.c' || echo './'`lib_internal/matchlist-appendfiles.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-matchlist-compare.o
`test -f 'lib_internal/matchlist-compare.c' || echo './'`lib_internal/matchlist-compare.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-matchlist-destroy.o
`test -f 'lib_internal/matchlist-destroy.c' || echo './'`lib_internal/matchlist-destroy.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-matchlist-init.o
`test -f 'lib_internal/matchlist-init.c' || echo './'`lib_internal/matchlist-init.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-matchlist-initmanually.o
`test -f 'lib_internal/matchlist-initmanually.c' || echo './'`lib_internal/matchlist-initmanually.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-matchlist-initrefserverlist.o
`test -f 'lib_internal/matchlist-initrefserverlist.c' || echo './'`lib_internal/matchlist-initrefserverlist.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-matchlist-printid.o
`test -f 'lib_internal/matchlist-printid.c' || echo './'`lib_internal/matchlist-printid.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-matchvserverinfo-free.o
`test -f 'lib_internal/matchvserverinfo-free.c' || echo './'`lib_internal/matchvserverinfo-free.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-pathinfo-append.o
`test -f 'lib_internal/pathinfo-append.c' || echo './'`lib_internal/pathinfo-append.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-pathinfo-test.o
`test -f 'lib_internal/pathinfo-test.c' || echo './'`lib_internal/pathinfo-test.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-switchtowatchxid.o
`test -f 'lib_internal/switchtowatchxid.c' || echo './'`lib_internal/switchtowatchxid.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-unify-deunify.o
`test -f 'lib_internal/unify-deunify.c' || echo './'`lib_internal/unify-deunify.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-unify-settime.o
`test -f 'lib_internal/unify-settime.c' || echo './'`lib_internal/unify-settime.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-unify-unify.o
`test -f 'lib_internal/unify-unify.c' || echo './'`lib_internal/unify-unify.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-unify-isiunlinkable.o
`test -f 'lib_internal/unify-isiunlinkable.c' || echo './'`lib_internal/unify-isiunlinkable.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-util-canonify.o
`test -f 'lib_internal/util-canonify.c' || echo './'`lib_internal/util-canonify.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-util-isnumber.o
`test -f 'lib_internal/util-isnumber.c' || echo './'`lib_internal/util-isnumber.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-util-isnumberunsigned.o
`test -f 'lib_internal/util-isnumberunsigned.c' || echo './'`lib_internal/util-isnumberunsigned.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-util-lockfile.o
`test -f 'lib_internal/util-lockfile.c' || echo './'`lib_internal/util-lockfile.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-util-safechdir.o
`test -f 'lib_internal/util-safechdir.c' || echo './'`lib_internal/util-safechdir.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-mkdir.o
`test -f 'lib_internal/mkdir.c' || echo './'`lib_internal/mkdir.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-command-appendparameter.o
`test -f 'lib_internal/command-appendparameter.c' || echo './'`lib_internal/command-appendparameter.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-command-setparams.o
`test -f 'lib_internal/command-setparams.c' || echo './'`lib_internal/command-setparams.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-command-exec.o
`test -f 'lib_internal/command-exec.c' || echo './'`lib_internal/command-exec.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-command-free.o
`test -f 'lib_internal/command-free.c' || echo './'`lib_internal/command-free.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-command-init.o
`test -f 'lib_internal/command-init.c' || echo './'`lib_internal/command-init.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-command-reset.o
`test -f 'lib_internal/command-reset.c' || echo './'`lib_internal/command-reset.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-command-wait.o
`test -f 'lib_internal/command-wait.c' || echo './'`lib_internal/command-wait.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-filecfg-iteratemultiline.o
`test -f 'lib_internal/filecfg-iteratemultiline.c' || echo './'`lib_internal/filecfg-iteratemultiline.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-filecfg-readentryflag.o
`test -f 'lib_internal/filecfg-readentryflag.c' || echo './'`lib_internal/filecfg-readentryflag.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-filecfg-readentrystr.o
`test -f 'lib_internal/filecfg-readentrystr.c' || echo './'`lib_internal/filecfg-readentrystr.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-matchlist-initbyvserver.o
`test -f 'lib_internal/matchlist-initbyvserver.c' || echo './'`lib_internal/matchlist-initbyvserver.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-matchvserverinfo-init.o
`test -f 'lib_internal/matchvserverinfo-init.c' || echo './'`lib_internal/matchvserverinfo-init.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o lib_internal/lib_internal_libinternal_diet_a-unify-copy.o
`test -f 'lib_internal/unify-copy.c' || echo './'`lib_internal/unify-copy.c
rm -f lib_internal/libinternal-diet.a
ar cru lib_internal/libinternal-diet.a lib_internal/lib_internal_libinternal_diet_a-errinfo-writeerrno.o
lib_internal/lib_internal_libinternal_diet_a-jailintotempdir.o lib_internal/lib_internal_libinternal_diet_a-matchlist-appendfiles.o
lib_internal/lib_internal_libinternal_diet_a-matchlist-compare.o lib_internal/lib_internal_libinternal_diet_a-matchlist-destroy.o
lib_internal/lib_internal_libinternal_diet_a-matchlist-init.o lib_internal/lib_internal_libinternal_diet_a-matchlist-initmanually.o
lib_internal/lib_internal_libinternal_diet_a-matchlist-initrefserverlist.o lib_internal/lib_internal_libinternal_diet_a-matchlist-printid.o
lib_internal/lib_internal_libinternal_diet_a-matchvserverinfo-free.o lib_internal/lib_internal_libinternal_diet_a-pathinfo-append.o
lib_internal/lib_internal_libinternal_diet_a-pathinfo-test.o lib_internal/lib_internal_libinternal_diet_a-switchtowatchxid.o
lib_internal/lib_internal_libinternal_diet_a-unify-deunify.o lib_internal/lib_internal_libinternal_diet_a-unify-settime.o
lib_internal/lib_internal_libinternal_diet_a-unify-unify.o lib_internal/lib_internal_libinternal_diet_a-unify-isiunlinkable.o
lib_internal/lib_internal_libinternal_diet_a-util-canonify.o lib_internal/lib_internal_libinternal_diet_a-util-isnumber.o
lib_internal/lib_internal_libinternal_diet_a-util-isnumberunsigned.o lib_internal/lib_internal_libinternal_diet_a-util-lockfile.o
lib_internal/lib_internal_libinternal_diet_a-util-safechdir.o lib_internal/lib_internal_libinternal_diet_a-mkdir.o
lib_internal/lib_internal_libinternal_diet_a-command-appendparameter.o lib_internal/lib_internal_libinternal_diet_a-command-setparams.o
lib_internal/lib_internal_libinternal_diet_a-command-exec.o lib_internal/lib_internal_libinternal_diet_a-command-free.o
lib_internal/lib_internal_libinternal_diet_a-command-init.o lib_internal/lib_internal_libinternal_diet_a-command-reset.o
lib_internal/lib_internal_libinternal_diet_a-command-wait.o lib_internal/lib_internal_libinternal_diet_a-filecfg-iteratemultiline.o
lib_internal/lib_internal_libinternal_diet_a-filecfg-readentryflag.o lib_internal/lib_internal_libinternal_diet_a-filecfg-readentrystr.o
lib_internal/lib_internal_libinternal_diet_a-matchlist-initbyvserver.o lib_internal/lib_internal_libinternal_diet_a-matchvserverinfo-init.o
lib_internal/lib_internal_libinternal_diet_a-unify-copy.o 
ranlib lib_internal/libinternal-diet.a
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall.lo `test -f 'lib/syscall.c'
|| echo './'`lib/syscall.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-checkversion.lo `test -f 'lib/checkversion.c'
|| echo './'`lib/checkversion.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/checkversion.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-checkversion.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-checkconfig.lo `test -f 'lib/checkconfig.c'
|| echo './'`lib/checkconfig.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/checkconfig.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-checkconfig.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-isdirectory.lo `test -f 'lib/isdirectory.c'
|| echo './'`lib/isdirectory.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/isdirectory.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-isdirectory.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-isfile.lo `test -f 'lib/isfile.c'
|| echo './'`lib/isfile.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/isfile.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-isfile.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-islink.lo `test -f 'lib/islink.c'
|| echo './'`lib/islink.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/islink.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-islink.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-getnbipv4root.lo `test -f
'lib/getnbipv4root.c' || echo './'`lib/getnbipv4root.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/getnbipv4root.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-getnbipv4root.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-getversion.lo `test -f 'lib/getversion.c'
|| echo './'`lib/getversion.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/getversion.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-getversion.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-capabilities.lo `test -f 'lib/capabilities.c'
|| echo './'`lib/capabilities.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/capabilities.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-capabilities.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-getfilecontext.lo `test -f
'lib/getfilecontext.c' || echo './'`lib/getfilecontext.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/getfilecontext.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-getfilecontext.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-getinsecurebcaps.lo `test
-f 'lib/getinsecurebcaps.c' || echo './'`lib/getinsecurebcaps.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/getinsecurebcaps.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-getinsecurebcaps.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-getxidtype.lo `test -f 'lib/getxidtype.c'
|| echo './'`lib/getxidtype.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/getxidtype.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-getxidtype.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-isdynamicxid.lo `test -f 'lib/isdynamicxid.c'
|| echo './'`lib/isdynamicxid.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/isdynamicxid.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-isdynamicxid.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-issupported.lo `test -f 'lib/issupported.c'
|| echo './'`lib/issupported.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/issupported.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-issupported.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-issupportedstring.lo `test
-f 'lib/issupportedstring.c' || echo './'`lib/issupportedstring.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/issupportedstring.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-issupportedstring.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-listparser_uint32.lo `test
-f 'lib/listparser_uint32.c' || echo './'`lib/listparser_uint32.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/listparser_uint32.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-listparser_uint32.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-listparser_uint64.lo `test
-f 'lib/listparser_uint64.c' || echo './'`lib/listparser_uint64.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/listparser_uint64.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-listparser_uint64.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-personalityflag.lo `test -f
'lib/personalityflag.c' || echo './'`lib/personalityflag.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/personalityflag.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-personalityflag.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-personalityflag_list.lo `test
-f 'lib/personalityflag_list.c' || echo './'`lib/personalityflag_list.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/personalityflag_list.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-personalityflag_list.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-personalitytype.lo `test -f
'lib/personalitytype.c' || echo './'`lib/personalitytype.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/personalitytype.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-personalitytype.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall-syscall.lo `test -f
'lib/syscall-syscall.c' || echo './'`lib/syscall-syscall.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall-syscall.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall-syscall.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-val2text-t2v-uint32.lo `test
-f 'lib/val2text-t2v-uint32.c' || echo './'`lib/val2text-t2v-uint32.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/val2text-t2v-uint32.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-val2text-t2v-uint32.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-val2text-t2v-uint64.lo `test
-f 'lib/val2text-t2v-uint64.c' || echo './'`lib/val2text-t2v-uint64.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/val2text-t2v-uint64.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-val2text-t2v-uint64.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-val2text-v2t-uint32.lo `test
-f 'lib/val2text-v2t-uint32.c' || echo './'`lib/val2text-v2t-uint32.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/val2text-v2t-uint32.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-val2text-v2t-uint32.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-val2text-v2t-uint64.lo `test
-f 'lib/val2text-v2t-uint64.c' || echo './'`lib/val2text-v2t-uint64.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/val2text-v2t-uint64.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-val2text-v2t-uint64.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-parselimit.lo `test -f 'lib/parselimit.c'
|| echo './'`lib/parselimit.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/parselimit.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-parselimit.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-getkernel.lo `test -f 'lib/getkernel.c'
|| echo './'`lib/getkernel.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/getkernel.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-getkernel.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-getprocentry-legacy.lo `test
-f 'lib/getprocentry-legacy.c' || echo './'`lib/getprocentry-legacy.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/getprocentry-legacy.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-getprocentry-legacy.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-cflags-compat.lo `test -f
'lib/cflags-compat.c' || echo './'`lib/cflags-compat.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/cflags-compat.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-cflags-compat.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-cflags_list-compat.lo `test
-f 'lib/cflags_list-compat.c' || echo './'`lib/cflags_list-compat.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/cflags_list-compat.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-cflags_list-compat.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-comparevserverbyid.lo `test
-f 'lib/comparevserverbyid.c' || echo './'`lib/comparevserverbyid.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/comparevserverbyid.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-comparevserverbyid.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-createskeleton.lo `test -f
'lib/createskeleton.c' || echo './'`lib/createskeleton.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/createskeleton.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-createskeleton.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-getvserverbyctx.lo `test -f
'lib/getvserverbyctx.c' || echo './'`lib/getvserverbyctx.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/getvserverbyctx.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-getvserverbyctx.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-getvservercfgstyle.lo `test
-f 'lib/getvservercfgstyle.c' || echo './'`lib/getvservercfgstyle.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/getvservercfgstyle.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-getvservercfgstyle.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-getvserverappdir.lo `test
-f 'lib/getvserverappdir.c' || echo './'`lib/getvserverappdir.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/getvserverappdir.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-getvserverappdir.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-getvservercfgdir.lo `test
-f 'lib/getvservercfgdir.c' || echo './'`lib/getvservercfgdir.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/getvservercfgdir.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-getvservercfgdir.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-getvserverctx.lo `test -f
'lib/getvserverctx.c' || echo './'`lib/getvserverctx.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/getvserverctx.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-getvserverctx.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-getvservername.lo `test -f
'lib/getvservername.c' || echo './'`lib/getvservername.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/getvservername.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-getvservername.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-getvservervdir.lo `test -f
'lib/getvservervdir.c' || echo './'`lib/getvservervdir.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/getvservervdir.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-getvservervdir.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-xidopt2xid.lo `test -f 'lib/xidopt2xid.c'
|| echo './'`lib/xidopt2xid.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/xidopt2xid.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-xidopt2xid.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-nidopt2nid.lo `test -f 'lib/nidopt2nid.c'
|| echo './'`lib/nidopt2nid.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/nidopt2nid.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-nidopt2nid.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-tagopt2tag.lo `test -f 'lib/tagopt2tag.c'
|| echo './'`lib/tagopt2tag.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/tagopt2tag.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-tagopt2tag.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-exitlikeprocess.lo `test -f
'lib/exitlikeprocess.c' || echo './'`lib/exitlikeprocess.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/exitlikeprocess.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-exitlikeprocess.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_rlimit.lo `test -f
'lib/syscall_rlimit.c' || echo './'`lib/syscall_rlimit.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_rlimit.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_rlimit.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_kill.lo `test -f 'lib/syscall_kill.c'
|| echo './'`lib/syscall_kill.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_kill.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_kill.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_ctxcreate.lo `test
-f 'lib/syscall_ctxcreate.c' || echo './'`lib/syscall_ctxcreate.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_ctxcreate.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_ctxcreate.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_ctxmigrate.lo `test
-f 'lib/syscall_ctxmigrate.c' || echo './'`lib/syscall_ctxmigrate.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_ctxmigrate.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_ctxmigrate.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_cleanupnamespace.lo
`test -f 'lib/syscall_cleanupnamespace.c' || echo './'`lib/syscall_cleanupnamespace.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_cleanupnamespace.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_cleanupnamespace.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_enternamespace.lo
`test -f 'lib/syscall_enternamespace.c' || echo './'`lib/syscall_enternamespace.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_enternamespace.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_enternamespace.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_getccaps.lo `test
-f 'lib/syscall_getccaps.c' || echo './'`lib/syscall_getccaps.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_getccaps.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_getccaps.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_getcflags.lo `test
-f 'lib/syscall_getcflags.c' || echo './'`lib/syscall_getcflags.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_getcflags.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_getcflags.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_getiattr.lo `test
-f 'lib/syscall_getiattr.c' || echo './'`lib/syscall_getiattr.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_getiattr.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_getiattr.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_getncaps.lo `test
-f 'lib/syscall_getncaps.c' || echo './'`lib/syscall_getncaps.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_getncaps.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_getncaps.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_getnflags.lo `test
-f 'lib/syscall_getnflags.c' || echo './'`lib/syscall_getnflags.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_getnflags.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_getnflags.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_getnxinfo.lo `test
-f 'lib/syscall_getnxinfo.c' || echo './'`lib/syscall_getnxinfo.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_getnxinfo.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_getnxinfo.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_gettasknid.lo `test
-f 'lib/syscall_gettasknid.c' || echo './'`lib/syscall_gettasknid.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_gettasknid.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_gettasknid.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_gettaskxid.lo `test
-f 'lib/syscall_gettaskxid.c' || echo './'`lib/syscall_gettaskxid.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_gettaskxid.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_gettaskxid.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_getvhiname.lo `test
-f 'lib/syscall_getvhiname.c' || echo './'`lib/syscall_getvhiname.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_getvhiname.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_getvhiname.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_getvxinfo.lo `test
-f 'lib/syscall_getvxinfo.c' || echo './'`lib/syscall_getvxinfo.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_getvxinfo.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_getvxinfo.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_netadd.lo `test -f
'lib/syscall_netadd.c' || echo './'`lib/syscall_netadd.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_netadd.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_netadd.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_netcreate.lo `test
-f 'lib/syscall_netcreate.c' || echo './'`lib/syscall_netcreate.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_netcreate.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_netcreate.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_netmigrate.lo `test
-f 'lib/syscall_netmigrate.c' || echo './'`lib/syscall_netmigrate.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_netmigrate.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_netmigrate.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_netremove.lo `test
-f 'lib/syscall_netremove.c' || echo './'`lib/syscall_netremove.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_netremove.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_netremove.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_setccaps.lo `test
-f 'lib/syscall_setccaps.c' || echo './'`lib/syscall_setccaps.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_setccaps.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_setccaps.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_setcflags.lo `test
-f 'lib/syscall_setcflags.c' || echo './'`lib/syscall_setcflags.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_setcflags.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_setcflags.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_setiattr.lo `test
-f 'lib/syscall_setiattr.c' || echo './'`lib/syscall_setiattr.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_setiattr.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_setiattr.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_setnamespace.lo `test
-f 'lib/syscall_setnamespace.c' || echo './'`lib/syscall_setnamespace.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_setnamespace.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_setnamespace.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_setncaps.lo `test
-f 'lib/syscall_setncaps.c' || echo './'`lib/syscall_setncaps.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_setncaps.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_setncaps.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_setnflags.lo `test
-f 'lib/syscall_setnflags.c' || echo './'`lib/syscall_setnflags.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_setnflags.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_setnflags.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_setsched.lo `test
-f 'lib/syscall_setsched.c' || echo './'`lib/syscall_setsched.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_setsched.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_setsched.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_setvhiname.lo `test
-f 'lib/syscall_setvhiname.c' || echo './'`lib/syscall_setvhiname.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_setvhiname.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_setvhiname.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_waitexit.lo `test
-f 'lib/syscall_waitexit.c' || echo './'`lib/syscall_waitexit.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_waitexit.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_waitexit.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-bcaps-v13.lo `test -f 'lib/bcaps-v13.c'
|| echo './'`lib/bcaps-v13.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/bcaps-v13.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-bcaps-v13.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-bcaps_list-v13.lo `test -f
'lib/bcaps_list-v13.c' || echo './'`lib/bcaps_list-v13.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/bcaps_list-v13.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-bcaps_list-v13.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-ccaps-v13.lo `test -f 'lib/ccaps-v13.c'
|| echo './'`lib/ccaps-v13.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/ccaps-v13.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-ccaps-v13.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-ccaps_list-v13.lo `test -f
'lib/ccaps_list-v13.c' || echo './'`lib/ccaps_list-v13.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/ccaps_list-v13.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-ccaps_list-v13.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-cflags-v13.lo `test -f 'lib/cflags-v13.c'
|| echo './'`lib/cflags-v13.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/cflags-v13.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-cflags-v13.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-cflags_list-v13.lo `test -f
'lib/cflags_list-v13.c' || echo './'`lib/cflags_list-v13.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/cflags_list-v13.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-cflags_list-v13.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-ncaps-net.lo `test -f 'lib/ncaps-net.c'
|| echo './'`lib/ncaps-net.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/ncaps-net.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-ncaps-net.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-ncaps_list-net.lo `test -f
'lib/ncaps_list-net.c' || echo './'`lib/ncaps_list-net.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/ncaps_list-net.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-ncaps_list-net.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-nflags-net.lo `test -f 'lib/nflags-net.c'
|| echo './'`lib/nflags-net.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/nflags-net.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-nflags-net.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-nflags_list-net.lo `test -f
'lib/nflags_list-net.c' || echo './'`lib/nflags_list-net.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/nflags_list-net.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-nflags_list-net.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_adddlimit.lo `test
-f 'lib/syscall_adddlimit.c' || echo './'`lib/syscall_adddlimit.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_adddlimit.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_adddlimit.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_getdlimit.lo `test
-f 'lib/syscall_getdlimit.c' || echo './'`lib/syscall_getdlimit.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_getdlimit.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_getdlimit.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_remdlimit.lo `test
-f 'lib/syscall_remdlimit.c' || echo './'`lib/syscall_remdlimit.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_remdlimit.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_remdlimit.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_setdlimit.lo `test
-f 'lib/syscall_setdlimit.c' || echo './'`lib/syscall_setdlimit.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_setdlimit.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_setdlimit.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_rlimitstat.lo `test
-f 'lib/syscall_rlimitstat.c' || echo './'`lib/syscall_rlimitstat.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_rlimitstat.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_rlimitstat.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_resetminmax.lo `test
-f 'lib/syscall_resetminmax.c' || echo './'`lib/syscall_resetminmax.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_resetminmax.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_resetminmax.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_getvci.lo `test -f
'lib/syscall_getvci.c' || echo './'`lib/syscall_getvci.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_getvci.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_getvci.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_virtstat.lo `test
-f 'lib/syscall_virtstat.c' || echo './'`lib/syscall_virtstat.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_virtstat.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_virtstat.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_ctxstat.lo `test -f
'lib/syscall_ctxstat.c' || echo './'`lib/syscall_ctxstat.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_ctxstat.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_ctxstat.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_getspacemask.lo `test
-f 'lib/syscall_getspacemask.c' || echo './'`lib/syscall_getspacemask.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_getspacemask.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_getspacemask.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_setmapping.lo `test
-f 'lib/syscall_setmapping.c' || echo './'`lib/syscall_setmapping.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_setmapping.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_setmapping.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_unsetmapping.lo `test
-f 'lib/syscall_unsetmapping.c' || echo './'`lib/syscall_unsetmapping.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_unsetmapping.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_unsetmapping.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_schedinfo.lo `test
-f 'lib/syscall_schedinfo.c' || echo './'`lib/syscall_schedinfo.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_schedinfo.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_schedinfo.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_getsched.lo `test
-f 'lib/syscall_getsched.c' || echo './'`lib/syscall_getsched.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_getsched.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_getsched.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_fsetiattr.lo `test
-f 'lib/syscall_fsetiattr.c' || echo './'`lib/syscall_fsetiattr.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_fsetiattr.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_fsetiattr.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_fgetiattr.lo `test
-f 'lib/syscall_fgetiattr.c' || echo './'`lib/syscall_fgetiattr.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_fgetiattr.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_fgetiattr.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_tagmigrate.lo `test
-f 'lib/syscall_tagmigrate.c' || echo './'`lib/syscall_tagmigrate.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_tagmigrate.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_tagmigrate.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_tagcreate.lo `test
-f 'lib/syscall_tagcreate.c' || echo './'`lib/syscall_tagcreate.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_tagcreate.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_tagcreate.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_tasktag.lo `test -f
'lib/syscall_tasktag.c' || echo './'`lib/syscall_tasktag.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_tasktag.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_tasktag.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_getbadness.lo `test
-f 'lib/syscall_getbadness.c' || echo './'`lib/syscall_getbadness.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_getbadness.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_getbadness.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_setbadness.lo `test
-f 'lib/syscall_setbadness.c' || echo './'`lib/syscall_setbadness.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_setbadness.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_setbadness.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_setumask.lo `test
-f 'lib/syscall_setumask.c' || echo './'`lib/syscall_setumask.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_setumask.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_setumask.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_getumask.lo `test
-f 'lib/syscall_getumask.c' || echo './'`lib/syscall_getumask.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_getumask.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_getumask.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-syscall_getspacedefault.lo
`test -f 'lib/syscall_getspacedefault.c' || echo './'`lib/syscall_getspacedefault.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/syscall_getspacedefault.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-syscall_getspacedefault.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-umask-v23.lo `test -f 'lib/umask-v23.c'
|| echo './'`lib/umask-v23.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/umask-v23.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-umask-v23.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o lib/lib_libvserver_la-umask_list-v23.lo `test -f
'lib/umask_list-v23.c' || echo './'`lib/umask_list-v23.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
lib/umask_list-v23.c  -fPIC -DPIC -o lib/.libs/lib_libvserver_la-umask_list-v23.o
lib/umask_list-v23.c: In function 'vc_text2umask_err':
lib/umask_list-v23.c:31: warning: implicit declaration of function 'vc_text2umask'
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o ensc_fmt/lib_libvserver_la-fmt-32.lo `test -f 'ensc_fmt/fmt-32.c'
|| echo './'`ensc_fmt/fmt-32.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
ensc_fmt/fmt-32.c  -fPIC -DPIC -o ensc_fmt/.libs/lib_libvserver_la-fmt-32.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o ensc_fmt/lib_libvserver_la-fmt-64.lo `test -f 'ensc_fmt/fmt-64.c'
|| echo './'`ensc_fmt/fmt-64.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
ensc_fmt/fmt-64.c  -fPIC -DPIC -o ensc_fmt/.libs/lib_libvserver_la-fmt-64.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o ensc_fmt/lib_libvserver_la-fmtx-32.lo `test -f 'ensc_fmt/fmtx-32.c'
|| echo './'`ensc_fmt/fmtx-32.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
ensc_fmt/fmtx-32.c  -fPIC -DPIC -o ensc_fmt/.libs/lib_libvserver_la-fmtx-32.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o ensc_fmt/lib_libvserver_la-fmtx-64.lo `test -f 'ensc_fmt/fmtx-64.c'
|| echo './'`ensc_fmt/fmtx-64.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
ensc_fmt/fmtx-64.c  -fPIC -DPIC -o ensc_fmt/.libs/lib_libvserver_la-fmtx-64.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG -DNDEBUG   -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -c -o ensc_fmt/lib_libvserver_la-fmt-tai64n.lo `test -f
'ensc_fmt/fmt-tai64n.c' || echo './'`ensc_fmt/fmt-tai64n.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c
ensc_fmt/fmt-tai64n.c  -fPIC -DPIC -o ensc_fmt/.libs/lib_libvserver_la-fmt-tai64n.o
/bin/bash ./libtool --tag=CC   --mode=link gcc  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time
-version 0.0.0 -Wl,-version-script=./lib/libvserver.ver  -o lib/libvserver.la -rpath
/usr/lib lib/lib_libvserver_la-syscall.lo lib/lib_libvserver_la-checkversion.lo lib/lib_libvserver_la-checkconfig.lo
lib/lib_libvserver_la-isdirectory.lo lib/lib_libvserver_la-isfile.lo lib/lib_libvserver_la-islink.lo
lib/lib_libvserver_la-getnbipv4root.lo lib/lib_libvserver_la-getversion.lo lib/lib_libvserver_la-capabilities.lo
lib/lib_libvserver_la-getfilecontext.lo lib/lib_libvserver_la-getinsecurebcaps.lo lib/lib_libvserver_la-getxidtype.lo
lib/lib_libvserver_la-isdynamicxid.lo lib/lib_libvserver_la-issupported.lo lib/lib_libvserver_la-issupportedstring.lo
lib/lib_libvserver_la-listparser_uint32.lo lib/lib_libvserver_la-listparser_uint64.lo
lib/lib_libvserver_la-personalityflag.lo lib/lib_libvserver_la-personalityflag_list.lo
lib/lib_libvserver_la-personalitytype.lo lib/lib_libvserver_la-syscall-syscall.lo lib/lib_libvserver_la-val2text-t2v-uint32.lo
lib/lib_libvserver_la-val2text-t2v-uint64.lo lib/lib_libvserver_la-val2text-v2t-uint32.lo
lib/lib_libvserver_la-val2text-v2t-uint64.lo lib/lib_libvserver_la-parselimit.lo lib/lib_libvserver_la-getkernel.lo
lib/lib_libvserver_la-getprocentry-legacy.lo lib/lib_libvserver_la-cflags-compat.lo
lib/lib_libvserver_la-cflags_list-compat.lo lib/lib_libvserver_la-comparevserverbyid.lo
lib/lib_libvserver_la-createskeleton.lo lib/lib_libvserver_la-getvserverbyctx.lo lib/lib_libvserver_la-getvservercfgstyle.lo
lib/lib_libvserver_la-getvserverappdir.lo lib/lib_libvserver_la-getvservercfgdir.lo
lib/lib_libvserver_la-getvserverctx.lo lib/lib_libvserver_la-getvservername.lo lib/lib_libvserver_la-getvservervdir.lo
lib/lib_libvserver_la-xidopt2xid.lo lib/lib_libvserver_la-nidopt2nid.lo lib/lib_libvserver_la-tagopt2tag.lo
lib/lib_libvserver_la-exitlikeprocess.lo lib/lib_libvserver_la-syscall_rlimit.lo lib/lib_libvserver_la-syscall_kill.lo
lib/lib_libvserver_la-syscall_ctxcreate.lo lib/lib_libvserver_la-syscall_ctxmigrate.lo
lib/lib_libvserver_la-syscall_cleanupnamespace.lo lib/lib_libvserver_la-syscall_enternamespace.lo
lib/lib_libvserver_la-syscall_getccaps.lo lib/lib_libvserver_la-syscall_getcflags.lo
lib/lib_libvserver_la-syscall_getiattr.lo lib/lib_libvserver_la-syscall_getncaps.lo
lib/lib_libvserver_la-syscall_getnflags.lo lib/lib_libvserver_la-syscall_getnxinfo.lo
lib/lib_libvserver_la-syscall_gettasknid.lo lib/lib_libvserver_la-syscall_gettaskxid.lo
lib/lib_libvserver_la-syscall_getvhiname.lo lib/lib_libvserver_la-syscall_getvxinfo.lo
lib/lib_libvserver_la-syscall_netadd.lo lib/lib_libvserver_la-syscall_netcreate.lo lib/lib_libvserver_la-syscall_netmigrate.lo
lib/lib_libvserver_la-syscall_netremove.lo lib/lib_libvserver_la-syscall_setccaps.lo
lib/lib_libvserver_la-syscall_setcflags.lo lib/lib_libvserver_la-syscall_setiattr.lo
lib/lib_libvserver_la-syscall_setnamespace.lo lib/lib_libvserver_la-syscall_setncaps.lo
lib/lib_libvserver_la-syscall_setnflags.lo lib/lib_libvserver_la-syscall_setsched.lo
lib/lib_libvserver_la-syscall_setvhiname.lo lib/lib_libvserver_la-syscall_waitexit.lo
lib/lib_libvserver_la-bcaps-v13.lo lib/lib_libvserver_la-bcaps_list-v13.lo lib/lib_libvserver_la-ccaps-v13.lo
lib/lib_libvserver_la-ccaps_list-v13.lo lib/lib_libvserver_la-cflags-v13.lo lib/lib_libvserver_la-cflags_list-v13.lo
lib/lib_libvserver_la-ncaps-net.lo lib/lib_libvserver_la-ncaps_list-net.lo lib/lib_libvserver_la-nflags-net.lo
lib/lib_libvserver_la-nflags_list-net.lo lib/lib_libvserver_la-syscall_adddlimit.lo
lib/lib_libvserver_la-syscall_getdlimit.lo lib/lib_libvserver_la-syscall_remdlimit.lo
lib/lib_libvserver_la-syscall_setdlimit.lo lib/lib_libvserver_la-syscall_rlimitstat.lo
lib/lib_libvserver_la-syscall_resetminmax.lo lib/lib_libvserver_la-syscall_getvci.lo
lib/lib_libvserver_la-syscall_virtstat.lo lib/lib_libvserver_la-syscall_ctxstat.lo lib/lib_libvserver_la-syscall_getspacemask.lo
lib/lib_libvserver_la-syscall_setmapping.lo lib/lib_libvserver_la-syscall_unsetmapping.lo
lib/lib_libvserver_la-syscall_schedinfo.lo lib/lib_libvserver_la-syscall_getsched.lo
lib/lib_libvserver_la-syscall_fsetiattr.lo lib/lib_libvserver_la-syscall_fgetiattr.lo
 lib/lib_libvserver_la-syscall_tagmigrate.lo lib/lib_libvserver_la-syscall_tagcreate.lo
lib/lib_libvserver_la-syscall_tasktag.lo lib/lib_libvserver_la-syscall_getbadness.lo
lib/lib_libvserver_la-syscall_setbadness.lo lib/lib_libvserver_la-syscall_setumask.lo
lib/lib_libvserver_la-syscall_getumask.lo lib/lib_libvserver_la-syscall_getspacedefault.lo
lib/lib_libvserver_la-umask-v23.lo lib/lib_libvserver_la-umask_list-v23.lo ensc_fmt/lib_libvserver_la-fmt-32.lo
ensc_fmt/lib_libvserver_la-fmt-64.lo ensc_fmt/lib_libvserver_la-fmtx-32.lo ensc_fmt/lib_libvserver_la-fmtx-64.lo
ensc_fmt/lib_libvserver_la-fmt-tai64n.lo  
libtool: link: gcc -shared  -fPIC -DPIC  lib/.libs/lib_libvserver_la-syscall.o lib/.libs/lib_libvserver_la-checkversion.o
lib/.libs/lib_libvserver_la-checkconfig.o lib/.libs/lib_libvserver_la-isdirectory.o
lib/.libs/lib_libvserver_la-isfile.o lib/.libs/lib_libvserver_la-islink.o lib/.libs/lib_libvserver_la-getnbipv4root.o
lib/.libs/lib_libvserver_la-getversion.o lib/.libs/lib_libvserver_la-capabilities.o
lib/.libs/lib_libvserver_la-getfilecontext.o lib/.libs/lib_libvserver_la-getinsecurebcaps.o
lib/.libs/lib_libvserver_la-getxidtype.o lib/.libs/lib_libvserver_la-isdynamicxid.o
lib/.libs/lib_libvserver_la-issupported.o lib/.libs/lib_libvserver_la-issupportedstring.o
lib/.libs/lib_libvserver_la-listparser_uint32.o lib/.libs/lib_libvserver_la-listparser_uint64.o
lib/.libs/lib_libvserver_la-personalityflag.o lib/.libs/lib_libvserver_la-personalityflag_list.o
lib/.libs/lib_libvserver_la-personalitytype.o lib/.libs/lib_libvserver_la-syscall-syscall.o
lib/.libs/lib_libvserver_la-val2text-t2v-uint32.o lib/.libs/lib_libvserver_la-val2text-t2v-uint64.o
lib/.libs/lib_libvserver_la-val2text-v2t-uint32.o lib/.libs/lib_libvserver_la-val2text-v2t-uint64.o
lib/.libs/lib_libvserver_la-parselimit.o lib/.libs/lib_libvserver_la-getkernel.o lib/.libs/lib_libvserver_la-getprocentry-legacy.o
lib/.libs/lib_libvserver_la-cflags-compat.o lib/.libs/lib_libvserver_la-cflags_list-compat.o
lib/.libs/lib_libvserver_la-comparevserverbyid.o lib/.libs/lib_libvserver_la-createskeleton.o
lib/.libs/lib_libvserver_la-getvserverbyctx.o lib/.libs/lib_libvserver_la-getvservercfgstyle.o
lib/.libs/lib_libvserver_la-getvserverappdir.o lib/.libs/lib_libvserver_la-getvservercfgdir.o
lib/.libs/lib_libvserver_la-getvserverctx.o lib/.libs/lib_libvserver_la-getvservername.o
lib/.libs/lib_libvserver_la-getvservervdir.o lib/.libs/lib_libvserver_la-xidopt2xid.o
lib/.libs/lib_libvserver_la-nidopt2nid.o lib/.libs/lib_libvserver_la-tagopt2tag.o lib/.libs/lib_libvserver_la-exitlikeprocess.o
lib/.libs/lib_libvserver_la-syscall_rlimit.o lib/.libs/lib_libvserver_la-syscall_kill.o
lib/.libs/lib_libvserver_la-syscall_ctxcreate.o lib/.libs/lib_libvserver_la-syscall_ctxmigrate.o
lib/.libs/lib_libvserver_la-syscall_cleanupnamespace.o lib/.libs/lib_libvserver_la-syscall_enternamespace.o
lib/.libs/lib_libvserver_la-syscall_getccaps.o lib/.libs/lib_libvserver_la-syscall_getcflags.o
lib/.libs/lib_libvserver_la-syscall_getiattr.o lib/.libs/lib_libvserver_la-syscall_getncaps.o
lib/.libs/lib_libvserver_la-syscall_getnflags.o lib/.libs/lib_libvserver_la-syscall_getnxinfo.o
lib/.libs/lib_libvserver_la-syscall_gettasknid.o lib/.libs/lib_libvserver_la-syscall_gettaskxid.o
lib/.libs/lib_libvserver_la-syscall_getvhiname.o lib/.libs/lib_libvserver_la-syscall_getvxinfo.o
lib/.libs/lib_libvserver_la-syscall_netadd.o lib/.libs/lib_libvserver_la-syscall_netcreate.o
lib/.libs/lib_libvserver_la-syscall_netmigrate.o lib/.libs/lib_libvserver_la-syscall_netremove.o
lib/.libs/lib_libvserver_la-syscall_setccaps.o lib/.libs/lib_libvserver_la-syscall_setcflags.o
lib/.libs/lib_libvserver_la-syscall_setiattr.o lib/.libs/lib_libvserver_la-syscall_setnamespace.o
lib/.libs/lib_libvserver_la-syscall_setncaps.o lib/.libs/lib_libvserver_la-syscall_setnflags.o
lib/.libs/lib_libvserver_la-syscall_setsched.o lib/.libs/lib_libvserver_la-syscall_setvhiname.o
lib/.libs/lib_libvserver_la-syscall_waitexit.o lib/.libs/lib_libvserver_la-bcaps-v13.o
lib/.libs/lib_libvserver_la-bcaps_list-v13.o lib/.libs/lib_libvserver_la-ccaps-v13.o
lib/.libs/lib_libvserver_la-ccaps_list-v13.o lib/.libs/lib_libvserver_la-cflags-v13.o
lib/.libs/lib_libvserver_la-cflags_list-v13.o lib/.libs/lib_libvserver_la-ncaps-net.o
lib/.libs/lib_libvserver_la-ncaps_list-net.o lib/.libs/lib_libvserver_la-nflags-net.o
lib/.libs/lib_libvserver_la-nflags_list-net.o lib/.libs/lib_libvserver_la-syscall_adddlimit.o
lib/.libs/lib_libvserver_la-syscall_getdlimit.o lib/.libs/lib_libvserver_la-syscall_remdlimit.o
lib/.libs/lib_libvserver_la-syscall_setdlimit.o lib/.libs/lib_libvserver_la-syscall_rlimitstat.o
lib/.libs/lib_libvserver_la-syscall_resetminmax.o lib/.libs/lib_libvserver_la-syscall_getvci.o
lib/.libs/lib_libvserver_la-syscall_virtstat.o lib/.libs/lib_libvserver_la-syscall_ctxstat.o
lib/.libs/lib_libvserver_la-syscall_getspacemask.o lib/.libs/lib_libvserver_la-syscall_setmapping.o
lib/.libs/lib_libvserver_la-syscall_unsetmapping.o lib/.libs/lib_libvserver_la-syscall_schedinfo.o
lib/.libs/lib_libvserver_la-syscall_getsched.o lib/.libs/lib_libvserver_la-syscall_fsetiattr.o
lib/.libs/lib_libvserver_la-syscall_fgetiattr.o lib/.libs/lib_libvserver_la-syscall_tagmigrate.o
lib/.libs/lib_libvserver_la-syscall_tagcreate.o lib/.libs/lib_libvserver_la-syscall_tasktag.o
lib/.libs/lib_libvserver_la-syscall_getbadness.o lib/.libs/lib_libvserver_la-syscall_setbadness.o
lib/.libs/lib_libvserver_la-syscall_setumask.o lib/.libs/lib_libvserver_la-syscall_getumask.o
lib/.libs/lib_libvserver_la-syscall_getspacedefault.o lib/.libs/lib_libvserver_la-umask-v23.o
lib/.libs/lib_libvserver_la-umask_list-v23.o ensc_fmt/.libs/lib_libvserver_la-fmt-32.o
ensc_fmt/.libs/lib_libvserver_la-fmt-64.o ensc_fmt/.libs/lib_libvserver_la-fmtx-32.o
ensc_fmt/.libs/lib_libvserver_la-fmtx-64.o ensc_fmt/.libs/lib_libvserver_la-fmt-tai64n.o
   -O2 -Wl,-version-script=./lib/libvserver.ver   -Wl,-soname -Wl,libvserver.so.0 -o
lib/.libs/libvserver.so.0.0.0
libtool: link: (cd "lib/.libs" && rm -f "libvserver.so.0" && ln -s "libvserver.so.0.0.0"
"libvserver.so.0")
libtool: link: (cd "lib/.libs" && rm -f "libvserver.so" && ln -s "libvserver.so.0.0.0"
"libvserver.so")
libtool: link: ( cd "lib/.libs" && rm -f "libvserver.la" && ln -s "../libvserver.la"
"libvserver.la" )
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG   -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -c -o src/src_rpm_fake_la-rpm-fake.lo `test -f 'src/rpm-fake.c'
|| echo './'`src/rpm-fake.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c src/rpm-fake.c
 -fPIC -DPIC -o src/.libs/src_rpm_fake_la-rpm-fake.o
src/rpm-fake.c: In function 'initSymbols':
src/rpm-fake.c:493: warning: ISO C forbids conversion of object pointer to function
pointer type
src/rpm-fake.c:494: warning: ISO C forbids conversion of object pointer to function
pointer type
src/rpm-fake.c:495: warning: ISO C forbids conversion of object pointer to function
pointer type
src/rpm-fake.c:496: warning: ISO C forbids conversion of object pointer to function
pointer type
/bin/bash ./libtool --tag=CC   --mode=link gcc  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time
-module -avoid-version -rpath /usr/lib/util-vserver  -o src/rpm-fake.la -rpath /usr/lib/util-vserver
src/src_rpm_fake_la-rpm-fake.lo lib/libvserver.la -ldl 
libtool: link: gcc -shared  -fPIC -DPIC  src/.libs/src_rpm_fake_la-rpm-fake.o   -Wl,-rpath
-Wl,/usr/src/util-vserver-0.30.216-pre3004/lib/.libs lib/.libs/libvserver.so -ldl  -O2
  -Wl,-soname -Wl,rpm-fake.so -o src/.libs/rpm-fake.so
libtool: link: ( cd "src/.libs" && rm -f "rpm-fake.la" && ln -s "../rpm-fake.la" "rpm-fake.la"
)
/usr/bin/ctags -x ./lib/vserver.h | \
		/usr/bin/gawk -f ./python/ctags-constants.awk \
		> ./python/_libvserver-constants.c
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -I ./lib -I
./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG   -I/usr/include/python2.6 -I./python
-g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o python/python__libvserver_la-_libvserver.lo
`test -f 'python/_libvserver.c' || echo './'`python/_libvserver.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE
-D_REENTRANT -DNDEBUG -I/usr/include/python2.6 -I./python -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -c python/_libvserver.c  -fPIC -DPIC -o python/.libs/python__libvserver_la-_libvserver.o
In file included from /usr/include/python2.6/Python.h:8,
                 from python/_libvserver.c:27:
/usr/include/python2.6/pyconfig.h:1031:1: warning: "_POSIX_C_SOURCE" redefined
In file included from /usr/include/stdint.h:26,
                 from python/_libvserver.c:21:
/usr/include/features.h:158:1: warning: this is the location of the previous definition
In file included from /usr/include/python2.6/Python.h:8,
                 from python/_libvserver.c:27:
/usr/include/python2.6/pyconfig.h:1040:1: warning: "_XOPEN_SOURCE" redefined
In file included from /usr/include/stdint.h:26,
                 from python/_libvserver.c:21:
/usr/include/features.h:160:1: warning: this is the location of the previous definition
python/_libvserver.c: In function 'pyvserver_wait_exit':
python/_libvserver.c:247: warning: dereferencing type-punned pointer will break strict-aliasing
rules
python/_libvserver.c:249: warning: dereferencing type-punned pointer will break strict-aliasing
rules
python/_libvserver.c: In function 'pyvserver_isSupported':
python/_libvserver.c:907: warning: dereferencing type-punned pointer will break strict-aliasing
rules
python/_libvserver.c:909: warning: dereferencing type-punned pointer will break strict-aliasing
rules
python/_libvserver.c: In function 'pyvserver_isSupportedString':
python/_libvserver.c:921: warning: dereferencing type-punned pointer will break strict-aliasing
rules
python/_libvserver.c:923: warning: dereferencing type-punned pointer will break strict-aliasing
rules
python/_libvserver.c: In function 'init_libvserver':
python/_libvserver.c:1150: warning: 'return' with a value, in function returning void
python/_libvserver.c: In function 'pyvserver_isSupportedString':
python/_libvserver.c:921: warning: dereferencing pointer '_Py_TrueStruct.189' does break
strict-aliasing rules
python/_libvserver.c:921: warning: dereferencing pointer '_Py_TrueStruct.189' does break
strict-aliasing rules
python/_libvserver.c:921: note: initialized from here
python/_libvserver.c:923: warning: dereferencing pointer '_Py_ZeroStruct.190' does break
strict-aliasing rules
python/_libvserver.c:923: warning: dereferencing pointer '_Py_ZeroStruct.190' does break
strict-aliasing rules
python/_libvserver.c:923: note: initialized from here
python/_libvserver.c: In function 'pyvserver_isSupported':
python/_libvserver.c:907: warning: dereferencing pointer '_Py_TrueStruct.186' does break
strict-aliasing rules
python/_libvserver.c:907: warning: dereferencing pointer '_Py_TrueStruct.186' does break
strict-aliasing rules
python/_libvserver.c:907: note: initialized from here
python/_libvserver.c:909: warning: dereferencing pointer '_Py_ZeroStruct.187' does break
strict-aliasing rules
python/_libvserver.c:909: warning: dereferencing pointer '_Py_ZeroStruct.187' does break
strict-aliasing rules
python/_libvserver.c:909: note: initialized from here
python/_libvserver.c: In function 'pyvserver_wait_exit':
python/_libvserver.c:247: warning: dereferencing pointer '_Py_ZeroStruct.58' does break
strict-aliasing rules
python/_libvserver.c:247: warning: dereferencing pointer '_Py_ZeroStruct.58' does break
strict-aliasing rules
python/_libvserver.c:247: note: initialized from here
python/_libvserver.c:249: warning: dereferencing pointer '_Py_TrueStruct.59' does break
strict-aliasing rules
python/_libvserver.c:249: warning: dereferencing pointer '_Py_TrueStruct.59' does break
strict-aliasing rules
python/_libvserver.c:249: note: initialized from here
/bin/bash ./libtool --tag=CC   --mode=link gcc  -I/usr/include/python2.6 -I./python
-g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -module -avoid-version -L/usr/lib/python2.6/dist-packages
 -o python/_libvserver.la -rpath /usr/lib/python2.6/dist-packages python/python__libvserver_la-_libvserver.lo
lib/libvserver.la 
libtool: link: gcc -shared  -fPIC -DPIC  python/.libs/python__libvserver_la-_libvserver.o
  -Wl,-rpath -Wl,/usr/src/util-vserver-0.30.216-pre3004/lib/.libs -L/usr/lib/python2.6/dist-packages
lib/.libs/libvserver.so  -O2   -Wl,-soname -Wl,_libvserver.so -o python/.libs/_libvserver.so
libtool: link: ( cd "python/.libs" && rm -f "_libvserver.la" && ln -s "../_libvserver.la"
"_libvserver.la" )
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/ifspec.o src/ifspec.c
/bin/bash ./libtool --tag=CC   --mode=link gcc  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time
  -o src/ifspec src/ifspec.o  
libtool: link: gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/ifspec
src/ifspec.o 
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/listdevip.o src/listdevip.c
/bin/bash ./libtool --tag=CC   --mode=link gcc  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time
  -o src/listdevip src/listdevip.o  
libtool: link: gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/listdevip
src/listdevip.o 
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/parserpmdump.o src/parserpmdump.c
/bin/bash ./libtool --tag=CC   --mode=link gcc  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time
  -o src/parserpmdump src/parserpmdump.o  
libtool: link: gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/parserpmdump
src/parserpmdump.o 
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/rebootmgr.o src/rebootmgr.c
/bin/bash ./libtool --tag=CC   --mode=link gcc  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time
  -o src/rebootmgr src/rebootmgr.o  
libtool: link: gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/rebootmgr
src/rebootmgr.o 
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/showperm.o src/showperm.c
/bin/bash ./libtool --tag=CC   --mode=link gcc  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time
  -o src/showperm src/showperm.o  
libtool: link: gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/showperm
src/showperm.o 
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vreboot.o src/vreboot.c
/bin/bash ./libtool --tag=CC   --mode=link gcc  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time
  -o src/vreboot src/vreboot.o  
libtool: link: gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vreboot
src/vreboot.o 
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o tests/escaperoot.o tests/escaperoot.c
/bin/bash ./libtool --tag=CC   --mode=link gcc  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time
  -o tests/escaperoot tests/escaperoot.o  
libtool: link: gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o tests/escaperoot
tests/escaperoot.o 
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o tests/forkbomb.o tests/forkbomb.c
/bin/bash ./libtool --tag=CC   --mode=link gcc  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time
  -o tests/forkbomb tests/forkbomb.o  
libtool: link: gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o tests/forkbomb
tests/forkbomb.o 
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o tests/testipc.o tests/testipc.c
/bin/bash ./libtool --tag=CC   --mode=link gcc  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time
  -o tests/testipc tests/testipc.o  
libtool: link: gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o tests/testipc
tests/testipc.o 
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o tests/testlimit.o tests/testlimit.c
/bin/bash ./libtool --tag=CC   --mode=link gcc  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time
  -o tests/testlimit tests/testlimit.o  
libtool: link: gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o tests/testlimit
tests/testlimit.o 
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o tests/testopenf.o tests/testopenf.c
/bin/bash ./libtool --tag=CC   --mode=link gcc  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time
  -o tests/testopenf tests/testopenf.o  
libtool: link: gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o tests/testopenf
tests/testopenf.o 
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o tests/getctx.o
tests/getctx.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o tests/getctx tests/getctx.o lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o tests/getctx
tests/getctx.o  lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o tests/getinitpid.o
tests/getinitpid.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o tests/getinitpid tests/getinitpid.o lib/libvserver.a
 
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o tests/getinitpid
tests/getinitpid.o  lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o tests/vserver-info.o
tests/vserver-info.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o tests/vserver-info tests/vserver-info.o lib/libvserver.a
 
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o tests/vserver-info
tests/vserver-info.o  lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/capchroot.o
src/capchroot.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/capchroot src/capchroot.o lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/capchroot
src/capchroot.o  lib/libvserver.a
src/capchroot.o: In function `Evc_new_s_context':
/usr/src/util-vserver-0.30.216-pre3004/./ensc_wrappers/wrappers-vserver.hc:28: warning:
warning: vc_new_s_context() is obsoleted; use vc_ctx_create() instead of
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/chain-echo.o
src/chain-echo.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time   -o src/chain-echo src/chain-echo.o  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/chain-echo
src/chain-echo.o 
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/chcontext.o
src/chcontext.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/chcontext-compat src/chcontext.o lib/libvserver.a
 lib_internal/libinternal-diet.a 
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/chcontext-compat
src/chcontext.o  lib/libvserver.a lib_internal/libinternal-diet.a
src/chcontext.o: In function `Evc_new_s_context':
/usr/src/util-vserver-0.30.216-pre3004/./ensc_wrappers/wrappers-vserver.hc:28: warning:
warning: vc_new_s_context() is obsoleted; use vc_ctx_create() instead of
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/check-unixfile.o
src/check-unixfile.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time   -o src/check-unixfile src/check-unixfile.o  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/check-unixfile
src/check-unixfile.o 
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/chroot-sh.o
src/chroot-sh.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time   -o src/chroot-sh src/chroot-sh.o lib_internal/libinternal-diet.a

libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/chroot-sh
src/chroot-sh.o  lib_internal/libinternal-diet.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/fakerunlevel.o
src/fakerunlevel.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time   -o src/fakerunlevel src/fakerunlevel.o  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/fakerunlevel
src/fakerunlevel.o 
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/filetime.o
src/filetime.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/filetime src/filetime.o lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/filetime
src/filetime.o  lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/keep-ctx-alive.o
src/keep-ctx-alive.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/keep-ctx-alive src/keep-ctx-alive.o lib/libvserver.a
 
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/keep-ctx-alive
src/keep-ctx-alive.o  lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/lockfile.o
src/lockfile.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time   -o src/lockfile src/lockfile.o  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/lockfile
src/lockfile.o 
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/readlink.o
src/readlink.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time   -o src/readlink src/readlink.o  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/readlink
src/readlink.o 
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/save_ctxinfo.o
src/save_ctxinfo.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/save_ctxinfo src/save_ctxinfo.o lib/libvserver.a
 
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/save_ctxinfo
src/save_ctxinfo.o  lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/secure-mount.o
src/secure-mount.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/secure-mount src/secure-mount.o lib/libvserver.a
 
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/secure-mount
src/secure-mount.o  lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/mask2prefix.o
src/mask2prefix.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time   -o src/mask2prefix src/mask2prefix.o  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/mask2prefix
src/mask2prefix.o 
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/exec-ulimit.o
src/exec-ulimit.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time   -o src/exec-ulimit src/exec-ulimit.o  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/exec-ulimit
src/exec-ulimit.o 
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/rpm-fake-resolver.o
src/rpm-fake-resolver.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/rpm-fake-resolver src/rpm-fake-resolver.o lib/libvserver.a
 
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/rpm-fake-resolver
src/rpm-fake-resolver.o  lib/libvserver.a
src/rpm-fake-resolver.o: In function `Evc_new_s_context':
/usr/src/util-vserver-0.30.216-pre3004/./ensc_wrappers/wrappers-vserver.hc:28: warning:
warning: vc_new_s_context() is obsoleted; use vc_ctx_create() instead of
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vshelper-sync.o
src/vshelper-sync.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time   -o src/vshelper-sync src/vshelper-sync.o  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vshelper-sync
src/vshelper-sync.o 
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/sigexec.o src/sigexec.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time   -o src/sigexec src/sigexec.o  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/sigexec
src/sigexec.o 
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/chbind.o src/chbind.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/chbind-compat src/chbind.o lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/chbind-compat
src/chbind.o  lib/libvserver.a
src/chbind.o: In function `main':
/usr/src/util-vserver-0.30.216-pre3004/src/chbind.c:290: warning: warning: vc_set_ipv4root()
is obsoleted; use vc_net_create() instead of
src/chbind.o: In function `readIP':
/usr/src/util-vserver-0.30.216-pre3004/src/chbind.c:205: warning: warning: gethostbyname()
leaks memory.  Use gethostbyname_r instead!
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vsysctl.o src/vsysctl.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/vsysctl src/vsysctl.o lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vsysctl
src/vsysctl.o  lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/h2ext.o src/h2ext.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/h2ext src/h2ext.o lib_internal/libinternal-diet.a
lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/h2ext
src/h2ext.o  lib_internal/libinternal-diet.a lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/tunctl.o src/tunctl.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/tunctl src/tunctl.o lib/libvserver.a  lib_internal/libinternal-diet.a

libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/tunctl
src/tunctl.o  lib/libvserver.a lib_internal/libinternal-diet.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/exec-remount.o
src/exec-remount.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/exec-remount src/exec-remount.o lib/libvserver.a
 
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/exec-remount
src/exec-remount.o  lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vunify.o src/vunify.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/vunify src/vunify.o lib_internal/libinternal-diet.a
lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vunify
src/vunify.o  lib_internal/libinternal-diet.a lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vcopy.o src/vcopy.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/vcopy src/vcopy.o lib_internal/libinternal-diet.a
lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vcopy
src/vcopy.o  lib_internal/libinternal-diet.a lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vclone.o src/vclone.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time   -o src/vclone src/vclone.o lib_internal/libinternal-diet.a lib/libvserver.a
 
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vclone
src/vclone.o  lib_internal/libinternal-diet.a lib/libvserver.a
gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT -DNDEBUG
  -I/usr/include/nss -I/usr/include/nspr   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time
-c -o src/src_vhashify-vhashify.o `test -f 'src/vhashify.c' || echo './'`src/vhashify.c
/bin/bash ./libtool --tag=CC   --mode=link gcc  -I/usr/include/nss -I/usr/include/nspr
  -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -Wl,--as-needed  -o src/vhashify
src/src_vhashify-vhashify.o lib_internal/libinternal-glibc.a libensc_vector-glibc.a
lib/libvserver.la -lnss3 -lnssutil3 -lsmime3 -lssl3 -lplds4 -lplc4 -lnspr4 -lpthread
-ldl   
libtool: link: gcc -I/usr/include/nss -I/usr/include/nspr -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -Wl,--as-needed -o src/.libs/vhashify src/src_vhashify-vhashify.o
 lib_internal/libinternal-glibc.a libensc_vector-glibc.a lib/.libs/libvserver.so -lnss3
-lnssutil3 -lsmime3 -lssl3 -lplds4 -lplc4 -lnspr4 -lpthread -ldl
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/exec-cd.o src/exec-cd.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time   -o src/exec-cd src/exec-cd.o  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/exec-cd
src/exec-cd.o 
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/fstool.o src/fstool.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/lsxid.o src/lsxid.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static   -o src/lsxid src/fstool.o src/lsxid.o lib_internal/libinternal-diet.a
lib/libvserver.a  libensc_vector-diet.a 
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/lsxid
src/fstool.o src/lsxid.o  lib_internal/libinternal-diet.a lib/libvserver.a libensc_vector-diet.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/chxid.o src/chxid.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/chxid src/fstool.o src/chxid.o lib_internal/libinternal-diet.a
lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/chxid
src/fstool.o src/chxid.o  lib_internal/libinternal-diet.a lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vps.o src/vps.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/vps src/vps.o lib_internal/libinternal-diet.a lib/libvserver.a
 
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vps
src/vps.o  lib_internal/libinternal-diet.a lib/libvserver.a
lib_internal/libinternal-diet.a(lib_internal_libinternal_diet_a-switchtowatchxid.o):
In function `switchToWatchXid':
/usr/src/util-vserver-0.30.216-pre3004/lib_internal/switchtowatchxid.c:45: warning:
warning: vc_new_s_context() is obsoleted; use vc_ctx_create() instead of
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/showattr.o
src/showattr.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/showattr src/fstool.o src/showattr.o lib_internal/libinternal-diet.a
lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/showattr
src/fstool.o src/showattr.o  lib_internal/libinternal-diet.a lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/setattr.o src/setattr.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/setattr src/fstool.o src/setattr.o lib_internal/libinternal-diet.a
lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/setattr
src/fstool.o src/setattr.o  lib_internal/libinternal-diet.a lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/reducecap.o
src/reducecap.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/reducecap src/reducecap.o lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/reducecap
src/reducecap.o  lib/libvserver.a
src/reducecap.o: In function `Evc_new_s_context':
/usr/src/util-vserver-0.30.216-pre3004/./ensc_wrappers/wrappers-vserver.hc:28: warning:
warning: vc_new_s_context() is obsoleted; use vc_ctx_create() instead of
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vdu.o src/vdu.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/vdu src/vdu.o lib/libvserver.a  lib_internal/libinternal-diet.a

libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vdu
src/vdu.o  lib/libvserver.a lib_internal/libinternal-diet.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vattribute.o
src/vattribute.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/vattribute src/vattribute.o lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vattribute
src/vattribute.o  lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vcontext.o
src/vcontext.c
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vlogin.o src/vlogin.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/vcontext src/vcontext.o src/vlogin.o lib/libvserver.a
 lib_internal/libinternal-diet.a 
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vcontext
src/vcontext.o src/vlogin.o  lib/libvserver.a lib_internal/libinternal-diet.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vlimit.o src/vlimit.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/vlimit src/vlimit.o lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vlimit
src/vlimit.o  lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG -DLEGACYDIR=\"/usr/lib/util-vserver/legacy\"   -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -c -o src/src_vkill-vkill.o `test -f 'src/vkill.c' || echo './'`src/vkill.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static lib_internal/libinternal-diet.a  -o src/vkill src/src_vkill-vkill.o
lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vkill
src/src_vkill-vkill.o  lib_internal/libinternal-diet.a lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vrsetup.o src/vrsetup.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time   -o src/vrsetup src/vrsetup.o  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vrsetup
src/vrsetup.o 
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vsched.o src/vsched.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/vsched src/vsched.o lib/libvserver.a  lib_internal/libinternal-diet.a

libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vsched
src/vsched.o  lib/libvserver.a lib_internal/libinternal-diet.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vserver-stat.o
src/vserver-stat.c
src/vserver-stat.c: In function 'registerXidCgroups':
src/vserver-stat.c:397: warning: comparison between signed and unsigned integer expressions
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/vserver-stat src/vserver-stat.o lib_internal/libinternal-diet.a
lib/libvserver.a  libensc_vector-diet.a 
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vserver-stat
src/vserver-stat.o  lib_internal/libinternal-diet.a lib/libvserver.a libensc_vector-diet.a
lib_internal/libinternal-diet.a(lib_internal_libinternal_diet_a-switchtowatchxid.o):
In function `switchToWatchXid':
/usr/src/util-vserver-0.30.216-pre3004/lib_internal/switchtowatchxid.c:45: warning:
warning: vc_new_s_context() is obsoleted; use vc_ctx_create() instead of
/usr/lib/diet/lib-x86_64/libc.a(vsnprintf.o): In function `vsnprintf':
vsnprintf.c:(.text+0x45): warning: warning: the printf functions add several kilobytes
of bloat.
/usr/lib/diet/lib-x86_64/libc.a(vsscanf.o): In function `vsscanf':
vsscanf.c:(.text+0x58): warning: warning: the scanf functions add several kilobytes
of bloat.
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vserver-info.o
src/vserver-info.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/vserver-info src/vserver-info.o lib_internal/libinternal-diet.a
lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vserver-info
src/vserver-info.o  lib_internal/libinternal-diet.a lib/libvserver.a
lib_internal/libinternal-diet.a(lib_internal_libinternal_diet_a-switchtowatchxid.o):
In function `switchToWatchXid':
/usr/src/util-vserver-0.30.216-pre3004/lib_internal/switchtowatchxid.c:45: warning:
warning: vc_new_s_context() is obsoleted; use vc_ctx_create() instead of
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vuname.o src/vuname.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/vuname src/vuname.o lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vuname
src/vuname.o  lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vwait.o src/vwait.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/vwait src/vwait.o lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vwait
src/vwait.o  lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/ncontext.o
src/ncontext.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/ncontext src/ncontext.o lib/libvserver.a  lib_internal/libinternal-diet.a

libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/ncontext
src/ncontext.o  lib/libvserver.a lib_internal/libinternal-diet.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/nattribute.o
src/nattribute.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/nattribute src/nattribute.o lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/nattribute
src/nattribute.o  lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/naddress.o
src/naddress.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/naddress src/naddress.o lib/libvserver.a  lib_internal/libinternal-diet.a

libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/naddress
src/naddress.o  lib/libvserver.a lib_internal/libinternal-diet.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vdevmap.o src/vdevmap.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/vdevmap src/vdevmap.o lib/libvserver.a  lib_internal/libinternal-diet.a

libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vdevmap
src/vdevmap.o  lib/libvserver.a lib_internal/libinternal-diet.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vtag.o src/vtag.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time lib/libvserver.a   -o src/vtag src/vtag.o lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vtag
src/vtag.o  lib/libvserver.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vspace.o src/vspace.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/vspace src/vspace.o lib/libvserver.a  lib_internal/libinternal-diet.a

libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vspace
src/vspace.o  lib/libvserver.a lib_internal/libinternal-diet.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vmemctrl.o
src/vmemctrl.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/vmemctrl src/vmemctrl.o lib/libvserver.a  lib_internal/libinternal-diet.a

libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vmemctrl
src/vmemctrl.o  lib/libvserver.a lib_internal/libinternal-diet.a
diet -Os gcc -DHAVE_CONFIG_H -I.  -I ./lib -I ./ensc_wrappers -D_GNU_SOURCE -D_REENTRANT
-DNDEBUG   -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -c -o src/vdlimit.o src/vdlimit.c
/bin/bash ./libtool --tag=CC   --mode=link diet -Os gcc  -g -O2 -std=c99 -Wall -pedantic
-W -funit-at-a-time -static  -o src/vdlimit src/vdlimit.o lib/libvserver.a  
libtool: link: diet -Os gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -o src/vdlimit
src/vdlimit.o  lib/libvserver.a
sed -e 's!/usr/lib/util-vserver!/usr/lib/util-vserver!g; s!^USR_SBIN=/usr/sbin$!USR_SBIN=/usr/sbin!g;
s!^DEFAULT_VSERVERDIR=/vservers$!DEFAULT_VSERVERDIR=/vservers!g' 'sysv/v_gated.subst'
>'sysv/v_gated.tmp'
sed -e 's!/usr/lib/util-vserver!/usr/lib/util-vserver!g; s!^USR_SBIN=/usr/sbin$!USR_SBIN=/usr/sbin!g;
s!^DEFAULT_VSERVERDIR=/vservers$!DEFAULT_VSERVERDIR=/vservers!g' 'sysv/v_httpd.subst'
>'sysv/v_httpd.tmp'
sed -e 's!/usr/lib/util-vserver!/usr/lib/util-vserver!g; s!^USR_SBIN=/usr/sbin$!USR_SBIN=/usr/sbin!g;
s!^DEFAULT_VSERVERDIR=/vservers$!DEFAULT_VSERVERDIR=/vservers!g' 'sysv/v_named.subst'
>'sysv/v_named.tmp'
sed -e 's!/usr/lib/util-vserver!/usr/lib/util-vserver!g; s!^USR_SBIN=/usr/sbin$!USR_SBIN=/usr/sbin!g;
s!^DEFAULT_VSERVERDIR=/vservers$!DEFAULT_VSERVERDIR=/vservers!g' 'sysv/v_portmap.subst'
>'sysv/v_portmap.tmp'
sed -e 's!/usr/lib/util-vserver!/usr/lib/util-vserver!g; s!^USR_SBIN=/usr/sbin$!USR_SBIN=/usr/sbin!g;
s!^DEFAULT_VSERVERDIR=/vservers$!DEFAULT_VSERVERDIR=/vservers!g' 'sysv/v_sendmail.subst'
>'sysv/v_sendmail.tmp'
sed -e 's!/usr/lib/util-vserver!/usr/lib/util-vserver!g; s!^USR_SBIN=/usr/sbin$!USR_SBIN=/usr/sbin!g;
s!^DEFAULT_VSERVERDIR=/vservers$!DEFAULT_VSERVERDIR=/vservers!g' 'sysv/v_smb.subst'
>'sysv/v_smb.tmp'
sed -e 's!/usr/lib/util-vserver!/usr/lib/util-vserver!g; s!^USR_SBIN=/usr/sbin$!USR_SBIN=/usr/sbin!g;
s!^DEFAULT_VSERVERDIR=/vservers$!DEFAULT_VSERVERDIR=/vservers!g' 'sysv/v_sshd.subst'
>'sysv/v_sshd.tmp'
sed -e 's!/usr/lib/util-vserver!/usr/lib/util-vserver!g; s!^USR_SBIN=/usr/sbin$!USR_SBIN=/usr/sbin!g;
s!^DEFAULT_VSERVERDIR=/vservers$!DEFAULT_VSERVERDIR=/vservers!g' 'sysv/v_xinetd.subst'
>'sysv/v_xinetd.tmp'
/bin/sed -e '...' scripts/legacy/vps.pathsubst >scripts/legacy/vps
/bin/sed -e '...' man/vserver-build.8.pathsubst >man/vserver-build.8
/bin/sed -e '...' contrib/manifest.dat.pathsubst >contrib/manifest.dat
rm -f lib/util-vserver.pc
test -z "" ||  'lib/util-vserver.pc.subst' 'lib/util-vserver.pc'
chmod a-w lib/util-vserver.pc
/bin/sed -e '...' scripts/util-vserver-vars.pathsubst >scripts/util-vserver-vars
make[3]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004'
Making all in distrib
make[3]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004/distrib'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004/distrib'
make[2]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004'
make[1]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004'
   # Skipping dh_auto_test - empty override
 debian/rules binary
dh binary
   dh_testroot
   dh_prep
   dh_installdirs
   debian/rules override_dh_auto_install
make[1]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004'
dh_auto_install
make[2]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004'
make  install-recursive
make[3]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004'
Making install in .
make[4]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004'
make[5]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004'
test -z "/usr/lib" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib"
 /usr/bin/install -c -m 644  lib/libvserver.a '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib'
 ( cd '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib' && ranlib libvserver.a
)
test -z "/usr/lib" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib"
 /bin/bash ./libtool   --mode=install /usr/bin/install -c   lib/libvserver.la '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib'
libtool: install: /usr/bin/install -c lib/.libs/libvserver.so.0.0.0 /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/libvserver.so.0.0.0
libtool: install: (cd /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib && {
ln -s -f libvserver.so.0.0.0 libvserver.so.0 || { rm -f libvserver.so.0 && ln -s libvserver.so.0.0.0
libvserver.so.0; }; })
libtool: install: (cd /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib && {
ln -s -f libvserver.so.0.0.0 libvserver.so || { rm -f libvserver.so && ln -s libvserver.so.0.0.0
libvserver.so; }; })
libtool: install: /usr/bin/install -c lib/.libs/libvserver.lai /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/libvserver.la
libtool: install: warning: remember to run `libtool --finish /usr/lib'
test -z "/usr/lib/util-vserver" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver"
 /usr/bin/install -c -m 644 FEATURES.txt scripts/functions scripts/vserver-build.apt-rpm
scripts/vserver-build.skeleton scripts/vserver-build.debootstrap scripts/vserver-build.fai
scripts/vserver-build.rpm scripts/vserver-build.urpmi scripts/vserver-build.yum scripts/vserver-build.template
scripts/vserver-build.rsync scripts/vserver-build.clone scripts/vserver-build.functions
scripts/vserver-build.functions.apt scripts/vserver-build.functions.rpm scripts/vserver-build.functions.pkgmgmt
scripts/vserver-build.functions.yum scripts/vserver-setup.functions scripts/vserver.functions
scripts/vserver.start scripts/vserver.stop scripts/vserver.suexec scripts/vserver.delete
scripts/vserver-init.functions scripts/util-vserver-vars '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver'
test -z "/usr/lib/util-vserver" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver"
 /bin/bash ./libtool   --mode=install /usr/bin/install -c   src/rpm-fake.la '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver'
libtool: install: warning: relinking `src/rpm-fake.la'
libtool: install: (cd /usr/src/util-vserver-0.30.216-pre3004; /bin/bash /usr/src/util-vserver-0.30.216-pre3004/libtool
 --tag CC --mode=relink gcc -g -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time -module
-avoid-version -rpath /usr/lib/util-vserver -o src/rpm-fake.la -rpath /usr/lib/util-vserver
src/src_rpm_fake_la-rpm-fake.lo lib/libvserver.la -ldl -inst-prefix-dir /usr/src/util-vserver-0.30.216-pre3004/debian/tmp)
libtool: relink: gcc -shared  -fPIC -DPIC  src/.libs/src_rpm_fake_la-rpm-fake.o   -L/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib
-L/usr/lib -lvserver -ldl  -O2   -Wl,-soname -Wl,rpm-fake.so -o src/.libs/rpm-fake.so
libtool: install: /usr/bin/install -c src/.libs/rpm-fake.soT /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/rpm-fake.so
libtool: install: /usr/bin/install -c src/.libs/rpm-fake.lai /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/rpm-fake.la
libtool: install: warning: remember to run `libtool --finish /usr/lib/util-vserver'
test -z "/usr/lib/util-vserver" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver"
  /bin/bash ./libtool   --mode=install /usr/bin/install -c src/capchroot src/chain-echo
src/chcontext-compat src/check-unixfile src/chroot-sh src/fakerunlevel src/filetime
src/keep-ctx-alive src/lockfile src/readlink src/save_ctxinfo src/secure-mount src/mask2prefix
src/exec-ulimit src/rpm-fake-resolver src/vshelper-sync src/sigexec src/chbind-compat
src/vsysctl src/h2ext src/tunctl src/exec-remount src/vunify src/vcopy src/vclone src/vhashify
'/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver'
libtool: install: /usr/bin/install -c src/capchroot /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/capchroot
libtool: install: /usr/bin/install -c src/chain-echo /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/chain-echo
libtool: install: /usr/bin/install -c src/chcontext-compat /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/chcontext-compat
libtool: install: /usr/bin/install -c src/check-unixfile /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/check-unixfile
libtool: install: /usr/bin/install -c src/chroot-sh /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/chroot-sh
libtool: install: /usr/bin/install -c src/fakerunlevel /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/fakerunlevel
libtool: install: /usr/bin/install -c src/filetime /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/filetime
libtool: install: /usr/bin/install -c src/keep-ctx-alive /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/keep-ctx-alive
libtool: install: /usr/bin/install -c src/lockfile /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/lockfile
libtool: install: /usr/bin/install -c src/readlink /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/readlink
libtool: install: /usr/bin/install -c src/save_ctxinfo /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/save_ctxinfo
libtool: install: /usr/bin/install -c src/secure-mount /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/secure-mount
libtool: install: /usr/bin/install -c src/mask2prefix /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/mask2prefix
libtool: install: /usr/bin/install -c src/exec-ulimit /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/exec-ulimit
libtool: install: /usr/bin/install -c src/rpm-fake-resolver /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/rpm-fake-resolver
libtool: install: /usr/bin/install -c src/vshelper-sync /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/vshelper-sync
libtool: install: /usr/bin/install -c src/sigexec /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/sigexec
libtool: install: /usr/bin/install -c src/chbind-compat /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/chbind-compat
libtool: install: /usr/bin/install -c src/vsysctl /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/vsysctl
libtool: install: /usr/bin/install -c src/h2ext /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/h2ext
libtool: install: /usr/bin/install -c src/tunctl /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/tunctl
libtool: install: /usr/bin/install -c src/exec-remount /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/exec-remount
libtool: install: /usr/bin/install -c src/vunify /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/vunify
libtool: install: /usr/bin/install -c src/vcopy /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/vcopy
libtool: install: /usr/bin/install -c src/vclone /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/vclone
libtool: install: warning: `lib/libvserver.la' has not been installed in `/usr/lib'
libtool: install: /usr/bin/install -c src/.libs/vhashify /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/vhashify
test -z "/usr/lib/util-vserver" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver"
 /usr/bin/install -c scripts/pkgmgmt scripts/vapt-get-worker scripts/vpkg scripts/vrpm-worker
scripts/vrpm-preload scripts/start-vservers scripts/vprocunhide scripts/vserver-build
scripts/vserver-wrapper scripts/vservers.grabinfo.sh scripts/vshelper scripts/vsysvwrapper
scripts/vurpm-worker scripts/vyum-worker scripts/h2ext-worker '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver'
test -z "/usr/lib/python2.6/dist-packages" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/python2.6/dist-packages"
 /bin/bash ./libtool   --mode=install /usr/bin/install -c   python/_libvserver.la '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/python2.6/dist-packages'
libtool: install: warning: relinking `python/_libvserver.la'
libtool: install: (cd /usr/src/util-vserver-0.30.216-pre3004; /bin/bash /usr/src/util-vserver-0.30.216-pre3004/libtool
 --tag CC --mode=relink gcc -I/usr/include/python2.6 -I./python -g -O2 -std=c99 -Wall
-pedantic -W -funit-at-a-time -module -avoid-version -L/usr/lib/python2.6/dist-packages
-o python/_libvserver.la -rpath /usr/lib/python2.6/dist-packages python/python__libvserver_la-_libvserver.lo
lib/libvserver.la -inst-prefix-dir /usr/src/util-vserver-0.30.216-pre3004/debian/tmp)
libtool: relink: gcc -shared  -fPIC -DPIC  python/.libs/python__libvserver_la-_libvserver.o
  -L/usr/lib/python2.6/dist-packages -L/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib
-L/usr/lib -lvserver  -O2   -Wl,-soname -Wl,_libvserver.so -o python/.libs/_libvserver.so
libtool: install: /usr/bin/install -c python/.libs/_libvserver.soT /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/python2.6/dist-packages/_libvserver.so
libtool: install: /usr/bin/install -c python/.libs/_libvserver.lai /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/python2.6/dist-packages/_libvserver.la
libtool: install: warning: remember to run `libtool --finish /usr/lib/python2.6/dist-packages'
test -z "/usr/lib/python2.6/dist-packages" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/python2.6/dist-packages"
 /usr/bin/install -c python/libvserver.py '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/python2.6/dist-packages'
test -z "/usr/sbin" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin"
  /bin/bash ./libtool   --mode=install /usr/bin/install -c src/exec-cd src/lsxid src/chxid
src/vps src/showattr src/setattr src/reducecap src/vdu src/vattribute src/vcontext src/vlimit
src/vkill src/vrsetup src/vsched src/vserver-stat src/vserver-info src/vuname src/vwait
src/ncontext src/nattribute src/naddress src/vdevmap src/vtag src/vspace src/vmemctrl
src/vdlimit '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin'
libtool: install: /usr/bin/install -c src/exec-cd /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/exec-cd
libtool: install: /usr/bin/install -c src/lsxid /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/lsxid
libtool: install: /usr/bin/install -c src/chxid /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/chxid
libtool: install: /usr/bin/install -c src/vps /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/vps
libtool: install: /usr/bin/install -c src/showattr /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/showattr
libtool: install: /usr/bin/install -c src/setattr /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/setattr
libtool: install: /usr/bin/install -c src/reducecap /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/reducecap
libtool: install: /usr/bin/install -c src/vdu /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/vdu
libtool: install: /usr/bin/install -c src/vattribute /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/vattribute
libtool: install: /usr/bin/install -c src/vcontext /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/vcontext
libtool: install: /usr/bin/install -c src/vlimit /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/vlimit
libtool: install: /usr/bin/install -c src/vkill /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/vkill
libtool: install: /usr/bin/install -c src/vrsetup /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/vrsetup
libtool: install: /usr/bin/install -c src/vsched /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/vsched
libtool: install: /usr/bin/install -c src/vserver-stat /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/vserver-stat
libtool: install: /usr/bin/install -c src/vserver-info /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/vserver-info
libtool: install: /usr/bin/install -c src/vuname /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/vuname
libtool: install: /usr/bin/install -c src/vwait /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/vwait
libtool: install: /usr/bin/install -c src/ncontext /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/ncontext
libtool: install: /usr/bin/install -c src/nattribute /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/nattribute
libtool: install: /usr/bin/install -c src/naddress /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/naddress
libtool: install: /usr/bin/install -c src/vdevmap /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/vdevmap
libtool: install: /usr/bin/install -c src/vtag /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/vtag
libtool: install: /usr/bin/install -c src/vspace /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/vspace
libtool: install: /usr/bin/install -c src/vmemctrl /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/vmemctrl
libtool: install: /usr/bin/install -c src/vdlimit /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin/vdlimit
test -z "/usr/sbin" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin"
 /usr/bin/install -c scripts/chbind scripts/chcontext scripts/vapt-get scripts/vdispatch-conf
scripts/vemerge scripts/vesync scripts/vmount scripts/vnamespace scripts/vpstree scripts/vrpm
scripts/vserver scripts/vsomething scripts/vtop scripts/vupdateworld scripts/vurpm scripts/vyum
scripts/legacy/vserver-copy '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/sbin'
test -z "/etc" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc"
 /usr/bin/install -c -m 644 sysv/vservers.conf '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc'
make  install-exec-hook
make[6]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004'
rm -f /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/rpm-fake.a
/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/rpm-fake.la


***************************
*
* NOTE: a plain "make install" installs only the files under $(prefix)
*       which might be insufficient. To complete the installation,
*       "make install-distribution" should be executed. See README,
*       "Notes for distributors" for details.
*
***************************


make[6]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004'
test -z "/usr/include" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/include"
 /usr/bin/install -c -m 644 lib/vserver.h '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/include'
test -z "/etc/init.d" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/init.d"
 /usr/bin/install -c sysv/rebootmgr sysv/vprocunhide sysv/vservers-default sysv/vservers-legacy
sysv/util-vserver sysv/v_gated sysv/v_httpd sysv/v_named sysv/v_portmap sysv/v_sendmail
sysv/v_smb sysv/v_sshd sysv/v_xinetd '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/init.d'
test -z "/usr/lib/util-vserver/legacy" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/legacy"
  /bin/bash ./libtool   --mode=install /usr/bin/install -c src/ifspec src/listdevip
src/parserpmdump src/rebootmgr src/showperm src/vreboot '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/legacy'
libtool: install: /usr/bin/install -c src/ifspec /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/legacy/ifspec
libtool: install: /usr/bin/install -c src/listdevip /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/legacy/listdevip
libtool: install: /usr/bin/install -c src/parserpmdump /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/legacy/parserpmdump
libtool: install: /usr/bin/install -c src/rebootmgr /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/legacy/rebootmgr
libtool: install: /usr/bin/install -c src/showperm /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/legacy/showperm
libtool: install: /usr/bin/install -c src/vreboot /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/legacy/vreboot
test -z "/usr/lib/util-vserver/legacy" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/legacy"
 /usr/bin/install -c scripts/legacy/save_s_context scripts/legacy/vserver scripts/legacy/rootshell
scripts/legacy/distrib-info scripts/legacy/vserverkillall scripts/legacy/vps '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/legacy'
test -z "/usr/share/man/man8" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/share/man/man8"
 /usr/bin/install -c -m 644 man/chbind.8 man/chcontext.8 man/distrib-info.8 man/rebootmgr.8
man/reducecap.8 man/vps.8 man/vpstree.8 man/vserver-copy.8 man/vserver-stat.8 man/vserver.8
man/vtop.8 man/vserver-build.8 '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/share/man/man8'
test -z "/usr/lib/pkgconfig" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/pkgconfig"
 /usr/bin/install -c -m 644 lib/util-vserver.pc '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/pkgconfig'
make  install-data-hook
make[6]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004'
test "/usr/lib/util-vserver" = "/usr/lib/util-vserver" || \
			for i in /usr/lib/util-vserver/pkgmgmt /usr/lib/util-vserver/vapt-get-worker /usr/lib/util-vserver/vpkg
/usr/lib/util-vserver/vrpm-worker /usr/lib/util-vserver/vrpm-preload /usr/lib/util-vserver/start-vservers
/usr/lib/util-vserver/vprocunhide /usr/lib/util-vserver/vserver-build /usr/lib/util-vserver/vserver-wrapper
/usr/lib/util-vserver/vservers.grabinfo.sh /usr/lib/util-vserver/vshelper /usr/lib/util-vserver/vsysvwrapper
/usr/lib/util-vserver/vurpm-worker /usr/lib/util-vserver/vyum-worker /usr/lib/util-vserver/h2ext-worker
/usr/lib/util-vserver/legacy/save_s_context /usr/lib/util-vserver/legacy/vserver /usr/lib/util-vserver/legacy/rootshell
/usr/lib/util-vserver/legacy/distrib-info /usr/lib/util-vserver/legacy/vserverkillall
/usr/lib/util-vserver/legacy/vps /usr/sbin/chbind /usr/sbin/chcontext /usr/sbin/vapt-get
/usr/sbin/vdispatch-conf /usr/sbin/vemerge /usr/sbin/vesync /usr/sbin/vmount /usr/sbin/vnamespace
/usr/sbin/vpstree /usr/sbin/vrpm /usr/sbin/vserver /usr/sbin/vsomething /usr/sbin/vtop
/usr/sbin/vupdateworld /usr/sbin/vurpm /usr/sbin/vyum /usr/sbin/vserver-copy /etc/init.d/rebootmgr
/etc/init.d/vprocunhide /etc/init.d/vservers-default /etc/init.d/vservers-legacy /etc/init.d/util-vserver
/etc/init.d/v_gated /etc/init.d/v_httpd /etc/init.d/v_named /etc/init.d/v_portmap /etc/init.d/v_sendmail
/etc/init.d/v_smb /etc/init.d/v_sshd /etc/init.d/v_xinetd; do \
				f="/usr/src/util-vserver-0.30.216-pre3004/debian/tmp$i"; \
				/bin/sed -e 's!/usr/lib/util-vserver!/usr/lib/util-vserver!g' "$f" >"$f.tmp"; \
				/usr/bin/cmp -s "$f.tmp" "$f" || cat "$f.tmp" >"$f"; \
				rm -f "$f.tmp"; \
			done
/bin/bash /usr/src/util-vserver-0.30.216-pre3004/install-sh -d -m 0755 /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/var/run/vservers
/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/var/run/vservers.rev /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/var/run/vshelper
/bin/bash /usr/src/util-vserver-0.30.216-pre3004/install-sh -d -m 0700 /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/var/cache/vservers
/bin/bash /usr/src/util-vserver-0.30.216-pre3004/install-sh -d -m 0755 /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.defaults
f=/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.defaults/vdirbase;
 test -e "$f" || ln -sf '/vservers'      "$f"
f=/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.defaults/cachebase;
test -e "$f" || ln -sf '/var/cache/vservers'     "$f"
f=/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.defaults/run.rev;
           test -e "$f" || ln -sf '/var/run/vservers.rev' "$f"


***************************
*
* NOTE: a plain "make install" installs only the files under $(prefix)
*       which might be insufficient. To complete the installation,
*       "make install-distribution" should be executed. See README,
*       "Notes for distributors" for details.
*
***************************


make[6]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004'
make[5]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004'
make[4]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004'
Making install in distrib
make[4]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004/distrib'
make[5]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004/distrib'
make  install-exec-hook
make[6]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004/distrib'


***************************
*
* NOTE: a plain "make install" installs only the files under $(prefix)
*       which might be insufficient. To complete the installation,
*       "make install-distribution" should be executed. See README,
*       "Notes for distributors" for details.
*
***************************


make[6]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004/distrib'
test -z "/usr/lib/util-vserver/defaults" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/defaults"
 /usr/bin/install -c -m 644 misc/debootstrap.mirror misc/debootstrap.uri misc/fstab
misc/mtab misc/vprocunhide-files misc/vunify-exclude misc/environment misc/context.start
misc/h2ext.desc '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/defaults'
test -z "/etc/vservers/.distributions" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.distributions"
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.distributions/fc3/apt'
 /usr/bin/install -c -m 644  fc3/apt/sources.list '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.distributions/fc3/apt'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.distributions/rh9/apt'
 /usr/bin/install -c -m 644  rh9/apt/sources.list '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.distributions/rh9/apt'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.distributions/suse91/apt'
 /usr/bin/install -c -m 644  suse91/apt/sources.list '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.distributions/suse91/apt'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.distributions/fc2/apt'
 /usr/bin/install -c -m 644  fc2/apt/sources.list '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.distributions/fc2/apt'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.distributions/fc1/apt'
 /usr/bin/install -c -m 644  fc1/apt/sources.list '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.distributions/fc1/apt'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.distributions/f7/apt'
 /usr/bin/install -c -m 644  f7/apt/sources.list '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.distributions/f7/apt'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.distributions/fc6/apt'
 /usr/bin/install -c -m 644  fc6/apt/sources.list '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.distributions/fc6/apt'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.distributions/fc5/apt'
 /usr/bin/install -c -m 644  fc5/apt/sources.list '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.distributions/fc5/apt'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.distributions/fc4/apt'
 /usr/bin/install -c -m 644  fc4/apt/sources.list '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.distributions/fc4/apt'
test -z "/usr/lib/util-vserver/distributions" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions"
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f13/rpmlist.d'
 /usr/bin/install -c -m 644  ./f13/rpmlist.d/00.lst '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f13/rpmlist.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc6/yum'
 /usr/bin/install -c -m 644  fc6/yum/yum.conf '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc6/yum'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f7/yum.repos.d'
 /usr/bin/install -c -m 644  ./f7/yum.repos.d/fedora-development.repo ./f7/yum.repos.d/fedora-updates-testing.repo
./f7/yum.repos.d/fedora-updates.repo ./f7/yum.repos.d/fedora.repo '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f7/yum.repos.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f14/pkgs'
 /usr/bin/install -c -m 644  f14/pkgs/01 f14/pkgs/02 f14/pkgs/03 '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f14/pkgs'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f8/pubkeys'
 /usr/bin/install -c -m 644  ./f8/pubkeys/RPM-GPG-KEY-fedora-8-and-9-primary ./f8/pubkeys/RPM-GPG-KEY-fedora-test-8-and-9-primary
'/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f8/pubkeys'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f8/yum'
 /usr/bin/install -c -m 644  f8/yum/yum.conf '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f8/yum'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f12/yum'
 /usr/bin/install -c -m 644  f12/yum/yum.conf '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f12/yum'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f8/yum.repos.d'
 /usr/bin/install -c -m 644  ./f8/yum.repos.d/fedora-development.repo ./f8/yum.repos.d/fedora-updates-testing.repo
./f8/yum.repos.d/fedora-updates.repo ./f8/yum.repos.d/fedora.repo '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f8/yum.repos.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f14/rpmlist.d'
 /usr/bin/install -c -m 644  ./f14/rpmlist.d/00.lst '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f14/rpmlist.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f11/pkgs'
 /usr/bin/install -c -m 644  f11/pkgs/01 f11/pkgs/02 f11/pkgs/03 '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f11/pkgs'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f9/yum.repos.d'
 /usr/bin/install -c -m 644  ./f9/yum.repos.d/fedora-development.repo ./f9/yum.repos.d/fedora-updates-testing.repo
./f9/yum.repos.d/fedora-updates.repo ./f9/yum.repos.d/fedora.repo '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f9/yum.repos.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc6/apt'
 /usr/bin/install -c -m 644  fc6/apt/rpmpriorities '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc6/apt'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc5/pkgs'
 /usr/bin/install -c -m 644  fc5/pkgs/01 fc5/pkgs/02 fc5/pkgs/03 '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc5/pkgs'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f8/apt'
 /usr/bin/install -c -m 644  f8/apt/rpmpriorities '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f8/apt'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/gentoo'
 /usr/bin/install -c -m 644  gentoo/init-vserver.sh gentoo/net.vserver gentoo/reboot.sh
gentoo/shutdown.sh '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/gentoo'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc3/rpmlist.d'
 /usr/bin/install -c -m 644  ./fc3/rpmlist.d/00.lst '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc3/rpmlist.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc2/pkgs'
 /usr/bin/install -c -m 644  fc2/pkgs/01 fc2/pkgs/02 '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc2/pkgs'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc2/apt'
 /usr/bin/install -c -m 644  fc2/apt/rpmpriorities '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc2/apt'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/centos4/yum'
 /usr/bin/install -c -m 644  centos4/yum/yum.conf '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/centos4/yum'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f8/pkgs'
 /usr/bin/install -c -m 644  f8/pkgs/01 f8/pkgs/02 f8/pkgs/03 '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f8/pkgs'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc4/rpmlist.d'
 /usr/bin/install -c -m 644  ./fc4/rpmlist.d/00.lst '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc4/rpmlist.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f7/rpmlist.d'
 /usr/bin/install -c -m 644  ./f7/rpmlist.d/00.lst '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f7/rpmlist.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/sl6/yum.repos.d'
 /usr/bin/install -c -m 644  ./sl6/yum.repos.d/sl.repo '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/sl6/yum.repos.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f9/pubkeys'
 /usr/bin/install -c -m 644  ./f9/pubkeys/RPM-GPG-KEY-fedora-8-and-9-primary ./f9/pubkeys/RPM-GPG-KEY-fedora-test-8-and-9-primary
'/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f9/pubkeys'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f9/yum'
 /usr/bin/install -c -m 644  f9/yum/yum.conf '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f9/yum'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f13/yum'
 /usr/bin/install -c -m 644  f13/yum/yum.conf '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f13/yum'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc5/rpmlist.d'
 /usr/bin/install -c -m 644  ./fc5/rpmlist.d/00.lst '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc5/rpmlist.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f8/rpmlist.d'
 /usr/bin/install -c -m 644  ./f8/rpmlist.d/00.lst '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f8/rpmlist.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/centos4/pkgs'
 /usr/bin/install -c -m 644  centos4/pkgs/01 centos4/pkgs/02 centos4/pkgs/03 '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/centos4/pkgs'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc3/yum'
 /usr/bin/install -c -m 644  fc3/yum/yum.conf '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc3/yum'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/defaults/rpm'
 /usr/bin/install -c -m 644  defaults/rpm/macros '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/defaults/rpm'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc6/rpmlist.d'
 /usr/bin/install -c -m 644  ./fc6/rpmlist.d/00.lst '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc6/rpmlist.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f9/rpmlist.d'
 /usr/bin/install -c -m 644  ./f9/rpmlist.d/00.lst '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f9/rpmlist.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f12/pkgs'
 /usr/bin/install -c -m 644  f12/pkgs/01 f12/pkgs/02 f12/pkgs/03 '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f12/pkgs'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/rh9/apt'
 /usr/bin/install -c -m 644  rh9/apt/rpmpriorities '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/rh9/apt'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc3/apt'
 /usr/bin/install -c -m 644  fc3/apt/rpmpriorities '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc3/apt'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/centos5/yum'
 /usr/bin/install -c -m 644  centos5/yum/yum.conf '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/centos5/yum'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc6/pkgs'
 /usr/bin/install -c -m 644  fc6/pkgs/01 fc6/pkgs/02 fc6/pkgs/03 '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc6/pkgs'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc3/pkgs'
 /usr/bin/install -c -m 644  fc3/pkgs/01 fc3/pkgs/02 fc3/pkgs/03 '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc3/pkgs'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f14/yum'
 /usr/bin/install -c -m 644  f14/yum/yum.conf '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f14/yum'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/defaults/apt'
 /usr/bin/install -c -m 644  defaults/apt/apt.conf '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/defaults/apt'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc4/yum'
 /usr/bin/install -c -m 644  fc4/yum/yum.conf '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc4/yum'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f9/pkgs'
 /usr/bin/install -c -m 644  f9/pkgs/01 f9/pkgs/02 f9/pkgs/03 '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f9/pkgs'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc3/yum.repos.d'
 /usr/bin/install -c -m 644  ./fc3/yum.repos.d/fedora-devel.repo ./fc3/yum.repos.d/fedora-updates-testing.repo
./fc3/yum.repos.d/fedora-updates.repo ./fc3/yum.repos.d/fedora.repo '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc3/yum.repos.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f10/yum.repos.d'
 /usr/bin/install -c -m 644  ./f10/yum.repos.d/fedora-updates-testing.repo ./f10/yum.repos.d/fedora-updates.repo
./f10/yum.repos.d/fedora.repo '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f10/yum.repos.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f10/yum'
 /usr/bin/install -c -m 644  f10/yum/yum.conf '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f10/yum'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/defaults'
 /usr/bin/install -c -m 644  defaults/devs defaults/apt.conf '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/defaults'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/suse91/rpm'
 /usr/bin/install -c -m 644  suse91/rpm/macros '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/suse91/rpm'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc4/yum.repos.d'
 /usr/bin/install -c -m 644  ./fc4/yum.repos.d/fedora-devel.repo ./fc4/yum.repos.d/fedora-updates-testing.repo
./fc4/yum.repos.d/fedora-updates.repo ./fc4/yum.repos.d/fedora.repo '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc4/yum.repos.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f11/yum.repos.d'
 /usr/bin/install -c -m 644  ./f11/yum.repos.d/fedora-updates-testing.repo ./f11/yum.repos.d/fedora-updates.repo
./f11/yum.repos.d/fedora.repo '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f11/yum.repos.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/centos5/pkgs'
 /usr/bin/install -c -m 644  centos5/pkgs/01 centos5/pkgs/02 centos5/pkgs/03 '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/centos5/pkgs'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/suse91/pkgs'
 /usr/bin/install -c -m 644  suse91/pkgs/01 suse91/pkgs/02 '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/suse91/pkgs'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc4/apt'
 /usr/bin/install -c -m 644  fc4/apt/rpmpriorities '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc4/apt'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/rh9/pkgs'
 /usr/bin/install -c -m 644  rh9/pkgs/01 rh9/pkgs/02 '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/rh9/pkgs'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/template'
 /usr/bin/install -c -m 644  template/initpost template/initpre '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/template'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc5/yum.repos.d'
 /usr/bin/install -c -m 644  ./fc5/yum.repos.d/fedora-core.repo ./fc5/yum.repos.d/fedora-development.repo
./fc5/yum.repos.d/fedora-extras-development.repo ./fc5/yum.repos.d/fedora-extras.repo
./fc5/yum.repos.d/fedora-legacy.repo ./fc5/yum.repos.d/fedora-updates-testing.repo ./fc5/yum.repos.d/fedora-updates.repo
'/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc5/yum.repos.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f12/yum.repos.d'
 /usr/bin/install -c -m 644  ./f12/yum.repos.d/fedora-updates-testing.repo ./f12/yum.repos.d/fedora-updates.repo
./f12/yum.repos.d/fedora.repo '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f12/yum.repos.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f13/pkgs'
 /usr/bin/install -c -m 644  f13/pkgs/01 f13/pkgs/02 f13/pkgs/03 '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f13/pkgs'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc6/yum.repos.d'
 /usr/bin/install -c -m 644  ./fc6/yum.repos.d/fedora-core.repo ./fc6/yum.repos.d/fedora-development.repo
./fc6/yum.repos.d/fedora-extras-development.repo ./fc6/yum.repos.d/fedora-extras.repo
./fc6/yum.repos.d/fedora-legacy.repo ./fc6/yum.repos.d/fedora-updates-testing.repo ./fc6/yum.repos.d/fedora-updates.repo
'/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc6/yum.repos.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f13/yum.repos.d'
 /usr/bin/install -c -m 644  ./f13/yum.repos.d/fedora-updates-testing.repo ./f13/yum.repos.d/fedora-updates.repo
./f13/yum.repos.d/fedora.repo '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f13/yum.repos.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/sl6/pkgs'
 /usr/bin/install -c -m 644  sl6/pkgs/01 sl6/pkgs/02 sl6/pkgs/03 '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/sl6/pkgs'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f10/pkgs'
 /usr/bin/install -c -m 644  f10/pkgs/01 f10/pkgs/02 f10/pkgs/03 '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f10/pkgs'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f14/yum.repos.d'
 /usr/bin/install -c -m 644  ./f14/yum.repos.d/fedora-updates-testing.repo ./f14/yum.repos.d/fedora-updates.repo
./f14/yum.repos.d/fedora.repo '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f14/yum.repos.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/suse91/apt'
 /usr/bin/install -c -m 644  suse91/apt/rpmpriorities '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/suse91/apt'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/centos4/yum.repos.d'
 /usr/bin/install -c -m 644  ./centos4/yum.repos.d/CentOS-Base.repo '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/centos4/yum.repos.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc5/yum'
 /usr/bin/install -c -m 644  fc5/yum/yum.conf '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc5/yum'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f10/rpmlist.d'
 /usr/bin/install -c -m 644  ./f10/rpmlist.d/00.lst '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f10/rpmlist.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/sl6/yum'
 /usr/bin/install -c -m 644  sl6/yum/yum.conf '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/sl6/yum'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc4/pkgs'
 /usr/bin/install -c -m 644  fc4/pkgs/01 fc4/pkgs/02 fc4/pkgs/03 '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc4/pkgs'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f7/yum'
 /usr/bin/install -c -m 644  f7/yum/yum.conf '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f7/yum'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f11/yum'
 /usr/bin/install -c -m 644  f11/yum/yum.conf '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f11/yum'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/centos5/yum.repos.d'
 /usr/bin/install -c -m 644  ./centos5/yum.repos.d/CentOS-Base.repo '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/centos5/yum.repos.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc1/pkgs'
 /usr/bin/install -c -m 644  fc1/pkgs/01 fc1/pkgs/02 '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc1/pkgs'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f11/rpmlist.d'
 /usr/bin/install -c -m 644  ./f11/rpmlist.d/00.lst '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f11/rpmlist.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc5/apt'
 /usr/bin/install -c -m 644  fc5/apt/rpmpriorities '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc5/apt'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f7/apt'
 /usr/bin/install -c -m 644  f7/apt/rpmpriorities '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f7/apt'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f7/pkgs'
 /usr/bin/install -c -m 644  f7/pkgs/01 f7/pkgs/02 f7/pkgs/03 '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f7/pkgs'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f12/rpmlist.d'
 /usr/bin/install -c -m 644  ./f12/rpmlist.d/00.lst '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/f12/rpmlist.d'
/bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc1/apt'
 /usr/bin/install -c -m 644  fc1/apt/rpmpriorities '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/fc1/apt'
test -z "/usr/lib/util-vserver/distributions" || /bin/mkdir -p "/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions"
 /bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/redhat/'
 /bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/gentoo/'
 /bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/debian/'
 /bin/mkdir -p '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/alpine/'
 /usr/bin/install -c redhat/initpost redhat/initpre redhat/rc.sysinit redhat/initctl
'/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/redhat/'
 /usr/bin/install -c debian/initpost '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/debian/'
 /usr/bin/install -c alpine/initpre alpine/initpost '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/alpine/'
 /usr/bin/install -c gentoo/initpost gentoo/initpre '/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/gentoo/'
make  install-data-hook
make[6]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004/distrib'
l="rh9 fc1 fc2 fc3 fc4 fc5 fc6 f7 f8 f9 f10 f11 f12 f13 f14 centos4 centos5 sl6"; for
i in $l; do \
				ln -sf ../redhat/initpost /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/$i/
&& \
				ln -sf ../redhat/initpre  /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/$i/;
\
			done
l="etch lenny squeeze wheezy sid"; for i in $l; do \
				ln -sf debian /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/usr/lib/util-vserver/distributions/$i;
\
			done
/bin/bash /usr/src/util-vserver-0.30.216-pre3004/install-sh -d /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers
\
				/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.distributions/.common/pubkeys
\
				/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.defaults \
				/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.defaults/apps/vunify/hash
\
				/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/etc/vservers/.defaults/files


***************************
*
* NOTE: a plain "make install" installs only the files under $(prefix)
*       which might be insufficient. To complete the installation,
*       "make install-distribution" should be executed. See README,
*       "Notes for distributors" for details.
*
***************************


make[6]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004/distrib'
make[5]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004/distrib'
make[4]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004/distrib'
make[3]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004'
make[2]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004'
make DESTDIR=/usr/src/util-vserver-0.30.216-pre3004/debian/tmp install-distribution
make[2]: Entering directory `/usr/src/util-vserver-0.30.216-pre3004'
/bin/bash /usr/src/util-vserver-0.30.216-pre3004/install-sh -d /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/vservers
/usr/src/util-vserver-0.30.216-pre3004/debian/tmp/vservers/.pkg
/bin/bash /usr/src/util-vserver-0.30.216-pre3004/install-sh -d /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/sbin
ln -sf ../usr/lib/util-vserver/vshelper /usr/src/util-vserver-0.30.216-pre3004/debian/tmp/sbin/vshelper
make[2]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004'
contrib/make-deb-manifest util-vserver debian contrib/manifest.dat files
make[1]: Leaving directory `/usr/src/util-vserver-0.30.216-pre3004'
   dh_install
   dh_installdocs
   dh_installchangelogs
   dh_installexamples
   dh_installman
   dh_installcatalogs
   dh_installcron
   dh_installdebconf
   dh_installemacsen
   dh_installifupdown
   dh_installinfo
   dh_installinit
   dh_installmenu
   dh_installmime
   dh_installmodules
   dh_installlogcheck
   dh_installlogrotate
   dh_installpam
   dh_installppp
   dh_installudev
   dh_installwm
   dh_installxfonts
   dh_bugfiles
   dh_lintian
   dh_gconf
   dh_icons
   dh_perl
   dh_usrlocal
   dh_link
   dh_compress
   dh_fixperms
   dh_strip
   dh_makeshlibs
   dh_shlibdeps
dpkg-shlibdeps: warning: debian/util-vserver-python/usr/lib/python2.6/dist-packages/_libvserver.so
contains an unresolvable reference to symbol Py_BuildValue: it's probably a plugin.
dpkg-shlibdeps: warning: 12 other similar warnings have been skipped (use -v to see
them all).
   dh_installdeb
   dh_gencontrol
dpkg-gencontrol: warning: Depends field of package util-vserver: unknown substitution
variable ${shlibs:Depends}
dpkg-gencontrol: warning: Depends field of package util-vserver-core: unknown substitution
variable ${shlibs:Depends}
dpkg-gencontrol: warning: Depends field of package util-vserver-sysv: unknown substitution
variable ${shlibs:Depends}
dpkg-gencontrol: warning: Depends field of package libvserver0-dev: unknown substitution
variable ${shlibs:Depends}
dpkg-gencontrol: warning: Depends field of package util-vserver-python: unknown substitution
variable ${python:Depends}
   dh_md5sums
   dh_builddeb
dpkg-deb: building package `util-vserver' in `../util-vserver_0.30.216-pre3004-1+udo60+1_amd64.deb'.
dpkg-deb: building package `libvserver0' in `../libvserver0_0.30.216-pre3004-1+udo60+1_amd64.deb'.
dpkg-deb: building package `util-vserver-core' in `../util-vserver-core_0.30.216-pre3004-1+udo60+1_amd64.deb'.
dpkg-deb: building package `util-vserver-build' in `../util-vserver-build_0.30.216-pre3004-1+udo60+1_amd64.deb'.
dpkg-deb: building package `util-vserver-sysv' in `../util-vserver-sysv_0.30.216-pre3004-1+udo60+1_amd64.deb'.
dpkg-deb: building package `util-vserver-legacy' in `../util-vserver-legacy_0.30.216-pre3004-1+udo60+1_amd64.deb'.
dpkg-deb: building package `libvserver0-dev' in `../libvserver0-dev_0.30.216-pre3004-1+udo60+1_amd64.deb'.
dpkg-deb: building package `util-vserver-python' in `../util-vserver-python_0.30.216-pre3004-1+udo60+1_amd64.deb'.
 dpkg-genchanges  >../util-vserver_0.30.216-pre3004-1+udo60+1_amd64.changes
dpkg-genchanges: not including original source code in upload
 dpkg-source --after-build util-vserver-0.30.216-pre3004
dpkg-buildpackage: binary and diff upload (original source NOT included)