Merge pull request #137330 from dsg22/feature-noto-fonts-fix-zopflipng-detection

noto-fonts: Fix path to zopflipng, remove broken check

authored by

Sandro and committed by
GitHub
b90c2043 4ef9b339

+8
+8
pkgs/data/fonts/noto-fonts/default.nix
··· 141 141 # python requirements using python.withPackages 142 142 sed -i '/ifndef VIRTUAL_ENV/,+2d' Makefile 143 143 144 + # Remove check for missing zopfli, it doesn't 145 + # work and we guarantee its presence already. 146 + sed -i '/ifdef MISSING_ZOPFLI/,+2d' Makefile 147 + sed -i '/ifeq (,$(shell which $(ZOPFLIPNG)))/,+4d' Makefile 148 + 149 + sed -i '/ZOPFLIPNG = zopflipng/d' Makefile 150 + echo "ZOPFLIPNG = ${zopfli}/bin/zopflipng" >> Makefile 151 + 144 152 # Make the build verbose so it won't get culled by Hydra thinking that 145 153 # it somehow got stuck doing nothing. 146 154 sed -i 's;\t@;\t;' Makefile