diff options
author | Stig Bjørlykke <stig@bjorlykke.org> | 2008-02-27 16:18:30 +0000 |
---|---|---|
committer | Stig Bjørlykke <stig@bjorlykke.org> | 2008-02-27 16:18:30 +0000 |
commit | fc5527ef6c7d7638dd321a5199693e42de77de6c (patch) | |
tree | bcbcc93530c0c4932c0c80ecd3ae865d601690a6 /plugins/asn1/Makefile.am | |
parent | 3a3c255a308a29ecc103a21f153d5c7611e4d326 (diff) | |
download | wireshark-fc5527ef6c7d7638dd321a5199693e42de77de6c.tar.gz wireshark-fc5527ef6c7d7638dd321a5199693e42de77de6c.tar.bz2 wireshark-fc5527ef6c7d7638dd321a5199693e42de77de6c.zip |
Quote argument to test in plugins Makefiles, as proposed by Greg A. Woods.
svn path=/trunk/; revision=24488
Diffstat (limited to 'plugins/asn1/Makefile.am')
-rw-r--r-- | plugins/asn1/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/asn1/Makefile.am b/plugins/asn1/Makefile.am index d9ea9ef01e..9574d9f461 100644 --- a/plugins/asn1/Makefile.am +++ b/plugins/asn1/Makefile.am @@ -80,7 +80,7 @@ LIBS = # plugin.c: $(DISSECTOR_SRC) $(top_srcdir)/tools/make-dissector-reg \ $(top_srcdir)/tools/make-dissector-reg.py - @if test -n $(PYTHON); then \ + @if test -n "$(PYTHON)"; then \ echo Making plugin.c with python ; \ $(PYTHON) $(top_srcdir)/tools/make-dissector-reg.py $(srcdir) \ plugin $(DISSECTOR_SRC) ; \ |