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:
authorEion Robb <eion@robbmob.com>2016-09-10 04:11:14 +0300
committerGitHub <noreply@github.com>2016-09-10 04:11:14 +0300
commita3ff2bf072303f52e5c44732f4bf2725911630d2 (patch)
treeb397073c80c272a98b8267ad7fd6455c924543bd
parentaf92ecf3dae857e670e7623f1fb13e9a86694f56 (diff)
parentffd26a692d43e3d261a37777b5e9af4a854c83e7 (diff)
Merge pull request #152 from hasufell/master
Quote variables in install rules
-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