blob: 9738f1a8c7d69d89301face2d587ab794d69077b [file] [log] [blame]
Andrew Geisslereef63862021-01-29 15:58:13 -06001Makefile.in.in: remove bashisms
2
3The brace expansion is bash specific and fails with dash.
4
5Upstream-Status: Pending [No permission to folk repo and create pull request]
6
7https://gitlab.xfce.org/apps/xfce4-panel-profiles
8
9Signed-off-by: Kai Kang <kai.kang@windriver.com>
10---
11 Makefile.in.in | 15 ++++++++++++----
12 1 file changed, 11 insertions(+), 4 deletions(-)
13
14diff --git a/Makefile.in.in b/Makefile.in.in
15index 73338f4..e08b218 100644
16--- a/Makefile.in.in
17+++ b/Makefile.in.in
18@@ -73,8 +73,11 @@ install: all xfce4-panel-profiles.1
19
20 install -d $(DESTDIR)/$(MANDIR)/man1
21 install xfce4-panel-profiles.1 $(DESTDIR)/$(MANDIR)/man1
22-
23- install -d $(DESTDIR)/$(PREFIX)/share/icons/hicolor/{128x128,48x48,16x16,scalable}/apps
24+
25+ install -d $(DESTDIR)/$(PREFIX)/share/icons/hicolor/128x128/apps
26+ install -d $(DESTDIR)/$(PREFIX)/share/icons/hicolor/48x48/apps
27+ install -d $(DESTDIR)/$(PREFIX)/share/icons/hicolor/16x16/apps
28+ install -d $(DESTDIR)/$(PREFIX)/share/icons/hicolor/scalable/apps
29 install data/icons/128x128/org.xfce.PanelProfiles.png $(DESTDIR)/$(PREFIX)/share/icons/hicolor/128x128/apps
30 install data/icons/48x48/org.xfce.PanelProfiles.png $(DESTDIR)/$(PREFIX)/share/icons/hicolor/48x48/apps
31 install data/icons/16x16/org.xfce.PanelProfiles.png $(DESTDIR)/$(PREFIX)/share/icons/hicolor/16x16/apps
32@@ -86,7 +89,9 @@ uninstall:
33 rm -rf $(DESTDIR)/$(DOCDIR)
34 # FIXME: Uninstall locales
35 rm -f $(DESTDIR)/$(PREFIX)/bin/$(APPNAME)
36- rm -rf $(DESTDIR)/$(PREFIX)/share/icons/hicolor/{128x128,48x48,16x16}/apps/org.xfce.PanelProfiles.png
37+ rm -rf $(DESTDIR)/$(PREFIX)/share/icons/hicolor/128x128/apps
38+ rm -rf $(DESTDIR)/$(PREFIX)/share/icons/hicolor/48x48/apps
39+ rm -rf $(DESTDIR)/$(PREFIX)/share/icons/hicolor/16x16/apps
40 rm -rf $(DESTDIR)/$(PREFIX)/share/icons/hicolor/scalable/apps/org.xfce.PanelProfiles.svg
41
42 distcheck: all
43@@ -106,7 +112,9 @@ clean:
44 rm -f bin/$(APPNAME)
45 rm -f data/metainfo/org.xfce.PanelProfiles.appdata.xml
46 rm -f data/layouts/*.tar.bz2
47- rm -f data/icons/{128x128,48x48,16x16}/org.xfce.panelprofiles.png
48+ rm -f data/icons/128x128/org.xfce.panelprofiles.png
49+ rm -f data/icons/48x48/org.xfce.panelprofiles.png
50+ rm -f data/icons/16x16/org.xfce.panelprofiles.png
51 rm -f data/icons/scalable/org.xfce.panelprofiles.svg
52 rm -f org.xfce.PanelProfiles.desktop
53 rm -f Makefile.in
54--
552.25.1
56