Jim Meyering
2008-Apr-17 16:24 UTC
[Ovirt-devel] now-useless rule in Makefile on release-0.4 branch
With recent changes on the branch, it looks like this first rule is useless, since there are no longer any wui-app-*.ks files wui-rel-%.ks: wui-app-%.ks $(ks-flatten) wui-rel-%.ks: wui-devel-%.ks $(ks-flatten) Besides, since the target is the same as the following one, it's either redundant(runs ks-flatten twice) or ignored -- I don't know the make rule for that, off hand) diff --git a/wui-appliance/Makefile b/wui-appliance/Makefile index e02ecb8..0e91ff4 100644 --- a/wui-appliance/Makefile +++ b/wui-appliance/Makefile @@ -16,9 +16,6 @@ define ks-flatten mv $@-t $@ endef -wui-rel-%.ks: wui-app-%.ks - $(ks-flatten) - wui-rel-%.ks: wui-devel-%.ks $(ks-flatten)