Skip to content

Commit

Permalink
fix: fix word splitting in var
Browse files Browse the repository at this point in the history
  • Loading branch information
Antiz96 committed Sep 25, 2024
1 parent 8350aef commit b7e913d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ install:
install -Dm 755 src/lib/* -t "${DESTDIR}${PREFIX}/share/${pkgname}/lib/"

# Install icons
install -Dm 664 "src/icons/${pkgname}*.svg" -t "${DESTDIR}${PREFIX}/share/icons/hicolor/scalable/apps/"
install -Dm 664 "src/icons/${pkgname}_updates-available*.svg" -t "${DESTDIR}${PREFIX}/share/icons/hicolor/scalable/apps/"
install -Dm 664 src/icons/"${pkgname}"*.svg -t "${DESTDIR}${PREFIX}/share/icons/hicolor/scalable/apps/"
install -Dm 664 src/icons/"${pkgname}"_updates-available*.svg -t "${DESTDIR}${PREFIX}/share/icons/hicolor/scalable/apps/"

# Install .desktop files
install -Dm 644 "res/desktop/${pkgname}.desktop" "${DESTDIR}${PREFIX}/share/applications/${pkgname}.desktop"
Expand Down Expand Up @@ -65,8 +65,8 @@ uninstall:
rm -rf "${DESTDIR}${PREFIX}/share/${pkgname}/"

# Delete icons
rm -f "${DESTDIR}${PREFIX}/share/icons/hicolor/scalable/apps/${pkgname}*.svg"
rm -f "${DESTDIR}${PREFIX}/share/icons/hicolor/scalable/apps/${pkgname}_updates-available*.svg"
rm -f "${DESTDIR}${PREFIX}"/share/icons/hicolor/scalable/apps/"${pkgname}"*.svg
rm -f "${DESTDIR}${PREFIX}"/share/icons/hicolor/scalable/apps/"${pkgname}"_updates-available*.svg

# Delete .desktop files
rm -f "${DESTDIR}${PREFIX}/share/applications/${pkgname}.desktop"
Expand Down

0 comments on commit b7e913d

Please sign in to comment.