Previously, plmenu already existed in the source directory, and that's where make looked for it. Now, however, it is generated to include the proper path to WPrefs and therefore is in the build directory.
See https://www.gnu.org/software/make/manual/html_node/Makefile-Basics.html for more about this distinction. --- WindowMaker/Defaults/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WindowMaker/Defaults/Makefile.am b/WindowMaker/Defaults/Makefile.am index 344c0bf..e61b41f 100644 --- a/WindowMaker/Defaults/Makefile.am +++ b/WindowMaker/Defaults/Makefile.am @@ -23,5 +23,5 @@ WMState: $(srcdir)/WMState.in $(AM_V_GEN)sed -e "s:#wprefs#:$(wpexecbindir)/WPrefs:" $(srcdir)/WMState.in > WMState ; \ chmod 644 WMState -WMRootMenu: $(srcdir)/../plmenu - $(AM_V_GEN)cp -f $(srcdir)/../plmenu WMRootMenu +WMRootMenu: ./../plmenu + $(AM_V_GEN)cp -f ./../plmenu WMRootMenu -- 2.7.4 -- To unsubscribe, send mail to wmaker-dev-unsubscr...@lists.windowmaker.org.