Greetings,
Is there a preferred format for the functions inside the receipt
files? I have seen a few variants, such as the following:
-----------
./configure && make && make install
----------- or ------------
./configure || return 1
make || return 1
make install || return 1
----------- or ------------
./configure
./make
./make install
-----------
The doc at
http://www.slitaz.org/en/doc/cookbook/receipts.html illustrates the
third example. I would just like to make sure that I follow the
preferred format....
Thank you,
Matthew