diff --git a/Makefile b/Makefile index 82aa061e9..76fc96735 100644 --- a/Makefile +++ b/Makefile @@ -38,8 +38,8 @@ PLUGIN_DIRS+= ${_${CATEGORY}} list: .for PLUGIN_DIR in ${PLUGIN_DIRS} - @echo ${PLUGIN_DIR} -- $$(${MAKE} -C ${PLUGIN_DIR} -V PLUGIN_COMMENT) \ - $$(if [ -n "$$(${MAKE} -C ${PLUGIN_DIR} -V PLUGIN_DEVEL _PLUGIN_DEVEL=)" ]; then echo "(development only)"; fi) + @echo ${PLUGIN_DIR} -- $$(${MAKE} -C ${PLUGIN_DIR} -v PLUGIN_COMMENT) \ + $$(if [ -n "$$(${MAKE} -C ${PLUGIN_DIR} -v PLUGIN_DEVEL _PLUGIN_DEVEL=)" ]; then echo "(development only)"; fi) .endfor # shared targets that are sane to run from the root directory diff --git a/Scripts/revbump.sh b/Scripts/revbump.sh index 120b0fce4..31f1fa974 100755 --- a/Scripts/revbump.sh +++ b/Scripts/revbump.sh @@ -8,7 +8,7 @@ if [ -z "${DIR}" ]; then DIR=. fi -REV=$(make -C ${DIR} -V PLUGIN_REVISION) +REV=$(make -C ${DIR} -v PLUGIN_REVISION) REV=$(expr ${REV} \+ 1) grep -v ^PLUGIN_REVISION ${DIR}/Makefile > ${DIR}/Makefile.tmp