From 9994c6aad3999bbb2162912042f655a66d6c5324 Mon Sep 17 00:00:00 2001 From: nowrep Date: Thu, 13 Oct 2011 16:16:01 +0200 Subject: [PATCH] [Fix:] Fixed "make uninstall", it is no longer removing whole /usr/share/applications and pixmaps directory. Closes #6 --- src/QupZilla.pro | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/QupZilla.pro b/src/QupZilla.pro index f0cec0a8c..ba7e8c85f 100644 --- a/src/QupZilla.pro +++ b/src/QupZilla.pro @@ -300,9 +300,11 @@ unix { target1.files += ../bin/themes target1.path = /usr/share/qupzilla - target2.files = ../linux/applications - target2.files += ../linux/pixmaps - target2.path = /usr/share + target2.files = ../linux/applications/qupzilla.desktop + target2.path = /usr/share/applications - INSTALLS += target target1 target2 + target3.files = ../linux/pixmaps/qupzilla.png + target3.path = /usr/share/pixmaps + + INSTALLS += target target1 target2 target3 }