icons: fix gimp-toilet-paper icon exception.
It was infinitely-looping because of a mis-usage of the % matching rule. On the rule or dependency side, I must use $(@D) instead of % to match the directory part of the target (I could also have used $* to get only the matching part of the stem).
This commit is contained in:
parent
46ebb0ca60
commit
be7d48e11d
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ include $(top_srcdir)/icons/Symbolic/icon-list.mk
|
|||
scalable/gimp-default-colors.svg: ../Symbolic/scalable/gimp-default-colors.svg
|
||||
mkdir -p `dirname $<` && cp -f $< $@
|
||||
|
||||
%/gimp-toilet-paper.png: $(top_srcdir)/icons/Symbolic/%/gimp-toilet-paper.png
|
||||
%/gimp-toilet-paper.png: $(top_srcdir)/icons/Symbolic/$(@D)/gimp-toilet-paper.png
|
||||
mkdir -p `dirname $<` && cp -f $< $@
|
||||
scalable/gimp-toilet-paper.svg: ../Symbolic/scalable/gimp-toilet-paper.svg
|
||||
mkdir -p `dirname $<` && cp -f $< $@
|
||||
|
|
|
|||
Loading…
Reference in a new issue