Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/pidgin-opensteamworks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Ospald <hasufell@posteo.de>2016-09-10 02:40:43 +0300
committerJulian Ospald <hasufell@posteo.de>2016-09-10 02:40:43 +0300
commitffd26a692d43e3d261a37777b5e9af4a854c83e7 (patch)
treeb397073c80c272a98b8267ad7fd6455c924543bd
parentaf92ecf3dae857e670e7623f1fb13e9a86694f56 (diff)
Quote variables in install rules
'make' does not take care of this! These are not variable assignments.
-rw-r--r--steam-mobile/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/steam-mobile/Makefile b/steam-mobile/Makefile
index ccf880d..1a73366 100644
--- a/steam-mobile/Makefile
+++ b/steam-mobile/Makefile
@@ -39,14 +39,14 @@ STEAM_OBJS = $(patsubst %.c, %.o, $(STEAM_SOURCES))
all: libsteam.so
install:
- mkdir -m $(DIR_PERM) -p $(DESTDIR)$(PLUGIN_DIR_PURPLE)
- install -m $(FILE_PERM) libsteam.so $(DESTDIR)$(PLUGIN_DIR_PURPLE)/$(PRPL_NAME)
- mkdir -m $(DIR_PERM) -p $(DESTDIR)$(DATA_ROOT_DIR_PURPLE)/pixmaps/pidgin/protocols/16
- install -m $(FILE_PERM) steam16.png $(DESTDIR)$(DATA_ROOT_DIR_PURPLE)/pixmaps/pidgin/protocols/16/steam.png
- mkdir -m $(DIR_PERM) -p $(DESTDIR)$(DATA_ROOT_DIR_PURPLE)/pixmaps/pidgin/protocols/22
- install -m $(FILE_PERM) steam22.png $(DESTDIR)$(DATA_ROOT_DIR_PURPLE)/pixmaps/pidgin/protocols/22/steam.png
- mkdir -m $(DIR_PERM) -p $(DESTDIR)$(DATA_ROOT_DIR_PURPLE)/pixmaps/pidgin/protocols/48
- install -m $(FILE_PERM) steam48.png $(DESTDIR)$(DATA_ROOT_DIR_PURPLE)/pixmaps/pidgin/protocols/48/steam.png
+ mkdir -m $(DIR_PERM) -p "$(DESTDIR)$(PLUGIN_DIR_PURPLE)"
+ install -m $(FILE_PERM) libsteam.so "$(DESTDIR)$(PLUGIN_DIR_PURPLE)/$(PRPL_NAME)"
+ mkdir -m $(DIR_PERM) -p "$(DESTDIR)$(DATA_ROOT_DIR_PURPLE)/pixmaps/pidgin/protocols/16"
+ install -m $(FILE_PERM) steam16.png "$(DESTDIR)$(DATA_ROOT_DIR_PURPLE)/pixmaps/pidgin/protocols/16/steam.png"
+ mkdir -m $(DIR_PERM) -p "$(DESTDIR)$(DATA_ROOT_DIR_PURPLE)/pixmaps/pidgin/protocols/22"
+ install -m $(FILE_PERM) steam22.png "$(DESTDIR)$(DATA_ROOT_DIR_PURPLE)/pixmaps/pidgin/protocols/22/steam.png"
+ mkdir -m $(DIR_PERM) -p "$(DESTDIR)$(DATA_ROOT_DIR_PURPLE)/pixmaps/pidgin/protocols/48"
+ install -m $(FILE_PERM) steam48.png "$(DESTDIR)$(DATA_ROOT_DIR_PURPLE)/pixmaps/pidgin/protocols/48/steam.png"
clean:
rm -f libsteam.so *.o