initramfs
initramfs.timestamp
inspector/virt-inspector.1
+inspector/virt-inspector.pl
inspector/stamp-inspector-generator
install-sh
*.jar
test-tool/libguestfs-test-tool-helper
tools/test.img
tools/virt-*.1
+tools/virt-*.pl
/GNUmakefile
/maint.mk
/build-aux
all-local:
cd $(srcdir); \
find $(DIST_SUBDIRS) \
- -name '*.c' -o -name '*.pl' -o -name '*.pm' -o \
- -name 'virt-cat' -o \
- -name 'virt-df' -o \
- -name 'virt-edit' -o \
- -name 'virt-inspector' -o \
- -name 'virt-list-filesystems' -o \
- -name 'virt-list-partitions' -o \
- -name 'virt-ls' -o \
- -name 'virt-make-fs' -o \
- -name 'virt-rescue' -o \
- -name 'virt-resize' -o \
- -name 'virt-tar' -o \
- -name 'virt-win-reg' | \
+ -name '*.c' -o -name '*.pl' -o -name '*.pm' | \
grep -v '^perl/blib/' | \
grep -v '^capitests/' | \
grep -v '^daemon/lib/' | \
endif
endif
+
+# Make symlink from virt-inspector.pl to virt-inspector. This is just
+# to keep xgettext happy since it uses the file extension to determine
+# the implementation language of a file.
+
+all-local: virt-inspector.pl
+
+virt-inspector.pl: virt-inspector
+ ln -sf $< $@
fish/time.c
fuse/dircache.c
fuse/guestmount.c
-inspector/virt-inspector
+inspector/virt-inspector.pl
java/com_redhat_et_libguestfs_GuestFS.c
ocaml/guestfs_c.c
ocaml/guestfs_c_actions.c
src/guestfs.c
test-tool/helper.c
test-tool/test-tool.c
-tools/virt-cat
-tools/virt-df
-tools/virt-edit
-tools/virt-list-filesystems
-tools/virt-list-partitions
-tools/virt-ls
-tools/virt-make-fs
-tools/virt-rescue
-tools/virt-resize
-tools/virt-tar
-tools/virt-win-reg
+tools/virt-cat.pl
+tools/virt-df.pl
+tools/virt-edit.pl
+tools/virt-list-filesystems.pl
+tools/virt-list-partitions.pl
+tools/virt-ls.pl
+tools/virt-make-fs.pl
+tools/virt-rescue.pl
+tools/virt-resize.pl
+tools/virt-tar.pl
+tools/virt-win-reg.pl
# libguestfs virt-* tools
-# Copyright (C) 2009 Red Hat Inc.
+# Copyright (C) 2009-2010 Red Hat Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
test-virt-tar.sh
endif
+
+# Make symlinks from virt-foo.pl to virt-foo. This is just to keep
+# xgettext happy since it uses the file extension to determine the
+# implementation language of a file.
+
+all-local: $(tools:%=virt-%.pl)
+
+virt-%.pl: virt-%
+ ln -sf $< $@
} else { # $mode eq "u"
$directory = pop @ARGV;
$tarball = pop @ARGV;
- die __"virt-tar: $tarball: file not found\n" unless -f $tarball;
+ die __x("virt-tar: {tarball}: file not found\n",
+ tarball => $tarball) unless -f $tarball;
}
-die __"virt-tar: $directory: directory name must start with '/' character\n"
+die __x("virt-tar: {dir}: directory name must start with '/' character\n",
+ dir => $directory)
unless substr ($directory, 0, 1) eq "/";
my @args = (\@ARGV);
%hives = ();
# Look in the tmpdir for all the hive files which have been
- # downloaded / modified by the import mapper, and upload
+ # downloaded / modified by the import mapper, and upload
# each one.
opendir my $dh, $tmpdir or die "$tmpdir: $!";
foreach (readdir $dh) {