]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 9.1.0687: Makefile may not install desktop files v9.1.0687
authorChristian Brabandt <cb@256bit.org>
Thu, 22 Aug 2024 19:20:15 +0000 (21:20 +0200)
committerChristian Brabandt <cb@256bit.org>
Thu, 22 Aug 2024 19:20:15 +0000 (21:20 +0200)
Problem:  Makefile may not install desktop files
Solution: Check for "$(DESTDIR)$(DATADIR)" instead of just "$DESTDIR",
          which is usually not defined, add uninstall rules for the
          icons and the desktop files

closes: #15528
fixes: #15546

Signed-off-by: Christian Brabandt <cb@256bit.org>
src/Makefile
src/version.c

index 2da0c6f4af46d39d6e0c43f98b4b6d6629d7bb0e..875a0de6a28426237ba42f0c89a09e2f090746bd 100644 (file)
@@ -2624,7 +2624,7 @@ ICONTHEMEPATH = $(DATADIR)/icons/hicolor
 DESKTOPPATH = $(DESTDIR)$(DATADIR)/applications
 KDEPATH = $(HOME)/.kde/share/icons
 install-icons:
-       if test -n "$(DESTDIR)"; then \
+       if test -n "$(DESTDIR)$(DATADIR)"; then \
                $(MKDIR_P) $(ICON48PATH) $(ICON32PATH) \
                $(ICON16PATH) $(DESKTOPPATH); \
        fi
@@ -2845,6 +2845,8 @@ uninstall_runtime:
        -rm -f $(SYS_OPTWIN_FILE)
        -rm -f $(DEST_COL)/*.vim $(DEST_COL)/README.txt
        -rm -rf $(DEST_COL)/tools
+       -rm -f $(DESKTOPPATH)/vim.desktop $(DESKTOPPATH)/gvim.desktop
+       -rm -f $(ICON16PATH)/gvim.png $(ICON32PATH)/gvim.png $(ICON48PATH)/gvim.png
        -rm -rf $(DEST_COL)/lists
        -rm -f $(DEST_SYN)/shared/*.vim $(DEST_SYN)/shared/README.txt
        -rm -f $(DEST_SYN)/modula2/opt/*.vim
index 0aa9683eb223755bbcd813c37c2706bb1c2266ca..72cce6580a5a1f219a72bc1ad87541e745aaa379 100644 (file)
@@ -704,6 +704,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    687,
 /**/
     686,
 /**/