Make .desktop files executable

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@32806 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2011-04-08 17:48:15 +00:00
parent b676e693a5
commit 05823c8eeb
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2011-04-08 Nicola Pero <nicola.pero@meta-innovation.com>
* Instance/application.make
($(APP_DIR)/Resources/$(GNUSTEP_INSTANCE).desktop): Make the
.desktop file executable after installing it (Suggestion from
"Philippe Roussel" <p.o.roussel@free.fr>).
2011-04-08 Nicola Pero <nicola.pero@meta-innovation.com>
* messages.make (INSIDE_ECHO_MISSING_DOCUMENTATION): Renamed to

View file

@ -321,7 +321,8 @@ $(APP_INFO_PLIST_FILE): $(GNUSTEP_STAMP_DEPEND) $(GNUSTEP_PLIST_DEPEND)
fi$(END_ECHO)
$(APP_DIR)/Resources/$(GNUSTEP_INSTANCE).desktop: $(APP_INFO_PLIST_FILE)
$(ECHO_CREATING)pl2link $^ $(APP_DIR)/Resources/$(GNUSTEP_INSTANCE).desktop$(END_ECHO)
$(ECHO_CREATING)pl2link $^ $(APP_DIR)/Resources/$(GNUSTEP_INSTANCE).desktop; \
chmod a+x $(APP_DIR)/Resources/$(GNUSTEP_INSTANCE).desktop$(END_ECHO)
endif