diff options
author | Guy Harris <guy@alum.mit.edu> | 1999-07-20 08:28:15 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 1999-07-20 08:28:15 +0000 |
commit | 92bbbec4649a0a44292aa7ff15809a463024da63 (patch) | |
tree | e466fe11e3df339e9205939c57e40db36df88660 | |
parent | bbc785bb908cfbd287e070d86ee3cc95cbdebdd2 (diff) | |
download | wireshark-92bbbec4649a0a44292aa7ff15809a463024da63.tar.gz wireshark-92bbbec4649a0a44292aa7ff15809a463024da63.tar.bz2 wireshark-92bbbec4649a0a44292aa7ff15809a463024da63.zip |
Don't depend on Perl being in "/usr/bin/perl"; find it, and generate a
"dfilter2pod" with the path of Perl in its "#!" line.
svn path=/trunk/; revision=373
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | Makefile.in | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 7a0274ff74..2a3ffac45e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -133,7 +133,9 @@ DISTCLEANFILES = \ EXTRA_DIST = \ config.h.win32 \ doc/Makefile \ - doc/dfilter2pod \ + doc/configure \ + doc/configure.in \ + doc/dfilter2pod.in \ doc/ethereal.pod \ doc/ethereal.pod.template \ ethereal.1 \ diff --git a/Makefile.in b/Makefile.in index 78f59fc2fd..b4175e98a8 100644 --- a/Makefile.in +++ b/Makefile.in @@ -98,7 +98,7 @@ ethereal_LDADD = @SNMP_O@ @SNPRINTF_O@ @STRERROR_O@ wiretap/libwiretap.a @SNMP_A DISTCLEANFILES = rdps ps.c *~ -EXTRA_DIST = config.h.win32 doc/Makefile doc/dfilter2pod doc/ethereal.pod doc/ethereal.pod.template ethereal.1 ethereal.spec image/icon-excl.xpm image/icon-ethereal.xpm Makefile.nmake manuf print.ps README.tru64 README.win32 rdps.c ylwrap VERSION +EXTRA_DIST = config.h.win32 doc/Makefile doc/configure doc/configure.in doc/dfilter2pod.in doc/ethereal.pod doc/ethereal.pod.template ethereal.1 ethereal.spec image/icon-excl.xpm image/icon-ethereal.xpm Makefile.nmake manuf print.ps README.tru64 README.win32 rdps.c ylwrap VERSION SUBDIRS = wiretap @SUBDIRS@ |