On 2013-11-25 16:27, Alexander Pyhalov wrote:
Hello.

Please, review http://cr.illumos.org/~webrev/alp/3395/

Can't the Makefile blocks like this:

profile: etc-profile.sh
        $(RM) profile
        $(CP) etc-profile.sh $@

be remade into this:

profile: etc-profile.sh
        $(RM) $@
        $(CP) $< $@

This would simplify copy-pasting of standardized actions :)


_______________________________________________
oi-dev mailing list
[email protected]
http://openindiana.org/mailman/listinfo/oi-dev

Reply via email to