aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorUli Heilmeier <uh@heilmeier.eu>2022-10-18 20:58:38 +0200
committerA Wireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2022-10-18 19:22:31 +0000
commitf90486246f78d7da9521e63836304af156afcdc0 (patch)
treed7a751a48049c27d3e0d6481e3e68ade9fda8496 /doc
parent4136b250c593da2ef8a4ef8444ce4b6ae23e30b3 (diff)
README.plugins: Fix version variables
Fixes: #18507
Diffstat (limited to 'doc')
-rw-r--r--doc/README.plugins10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/README.plugins b/doc/README.plugins
index dbd16d319c..6d665c87a9 100644
--- a/doc/README.plugins
+++ b/doc/README.plugins
@@ -79,7 +79,7 @@ If you want to add the plugin to your own Windows installer add a text
file named custom_plugins.txt to the packaging/nsis directory, with a
"File" statement for NSIS:
-File "${STAGING_DIR}\plugins\${VERSION_MAJOR}.${VERSION_MINOR}\epan\foo.dll"
+File "${STAGING_DIR}\plugins\${MAJOR_VERSION}.${MINOR_VERSION}\epan\foo.dll"
3.2 Permanent addition
@@ -120,10 +120,10 @@ in the NSIS installer wireshark.nsi file.
Add the relative path of your plugin DLL (in alphabetical order) to the
list of "File" statements in the "Dissector Plugins" section:
-File "${STAGING_DIR}\plugins\${VERSION_MAJOR}.${VERSION_MINOR}\epan\ethercat.dll"
-File "${STAGING_DIR}\plugins\${VERSION_MAJOR}.${VERSION_MINOR}\epan\foo.dll"
-File "${STAGING_DIR}\plugins\${VERSION_MAJOR}.${VERSION_MINOR}\epan\gryphon.dll"
-File "${STAGING_DIR}\plugins\${VERSION_MAJOR}.${VERSION_MINOR}\epan\irda.dll"
+File "${STAGING_DIR}\plugins\${MAJOR_VERSION}.${MINOR_VERSION}\epan\ethercat.dll"
+File "${STAGING_DIR}\plugins\${MAJOR_VERSION}.${MINOR_VERSION}\epan\foo.dll"
+File "${STAGING_DIR}\plugins\${MAJOR_VERSION}.${MINOR_VERSION}\epan\gryphon.dll"
+File "${STAGING_DIR}\plugins\${MAJOR_VERSION}.${MINOR_VERSION}\epan\irda.dll"
3.2.2.2 Other installers