diff options
author | gdt | 2006-11-25 13:06:18 +0000 |
---|---|---|
committer | gdt | 2006-11-25 13:06:18 +0000 |
commit | 289b209b123471ad6236880930bcae0a8f325a4e (patch) | |
tree | 322fb241c554f9da9db17ee7b2a63247f087cb3a | |
parent | c26f00879436d715503e7d8da9645651bb7e05f2 (diff) | |
download | gnuradio-289b209b123471ad6236880930bcae0a8f325a4e.tar.gz gnuradio-289b209b123471ad6236880930bcae0a8f325a4e.tar.bz2 gnuradio-289b209b123471ad6236880930bcae0a8f325a4e.zip |
Avoid non-portable use of $< in non-pattern rule.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@4018 221aa14e-8319-0410-a670-987f0aec2ac5
-rw-r--r-- | usrp/doc/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usrp/doc/Makefile.am b/usrp/doc/Makefile.am index 89f902e32..f39961adc 100644 --- a/usrp/doc/Makefile.am +++ b/usrp/doc/Makefile.am @@ -52,7 +52,7 @@ html/index.html: docbook-html: usrp_guide.html usrp_guide.html: usrp_guide.xml - xmlto html-nochunks $< + xmlto html-nochunks usrp_guide.xml install-data-local: $(mkinstalldirs) $(DESTDIR)$(docdir) |