diff options
author | Richard Jones <rjones@trick.home.annexia.org> | 2009-09-23 12:04:25 +0100 |
---|---|---|
committer | Richard Jones <rjones@trick.home.annexia.org> | 2009-09-23 12:04:25 +0100 |
commit | 154370c0e8a7bfcb6af5236bd7232794c188eabb (patch) | |
tree | f0f7a2b7e1ae698502853d97201eff1730236737 /cat | |
parent | 82918538abc707fb59fff42204f99ef031c593a9 (diff) | |
download | libguestfs-154370c0e8a7bfcb6af5236bd7232794c188eabb.tar.gz libguestfs-154370c0e8a7bfcb6af5236bd7232794c188eabb.tar.xz libguestfs-154370c0e8a7bfcb6af5236bd7232794c188eabb.zip |
Replace @...@ with $(...) in these common Makefile.am files.
Diffstat (limited to 'cat')
-rw-r--r-- | cat/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cat/Makefile.am b/cat/Makefile.am index 89a33a4c..98df337a 100644 --- a/cat/Makefile.am +++ b/cat/Makefile.am @@ -23,7 +23,7 @@ if HAVE_CAT man_MANS = virt-cat.1 -noinst_DATA = @top_builddir@/html/virt-cat.1.html +noinst_DATA = $(top_builddir)/html/virt-cat.1.html virt-cat.1: virt-cat.pl $(POD2MAN) \ @@ -32,9 +32,9 @@ virt-cat.1: virt-cat.pl --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \ $< > $@ -@top_builddir@/html/virt-cat.1.html: virt-cat.pl - mkdir -p @top_builddir@/html - cd @top_builddir@ && pod2html \ +$(top_builddir)/html/virt-cat.1.html: virt-cat.pl + mkdir -p $(top_builddir)/html + cd $(top_builddir) && pod2html \ --css 'pod.css' \ --title 'virt-cat, display a file in a virtual machine' \ --htmldir html \ |