%% [EMAIL PROTECTED] writes: m> I need to know what commands, exactly, the makefile is calling, but m> unfortunately the following wasn't helpful:
m> [EMAIL PROTECTED]:~/debian-installer/debian-installer-20041012/build$ m> DEB_HOST_ARCH=powerpc make -n build_powerpc_netboot m> install -d ./stamps/ m> make --no-print-directory _build SUBARCH=powerpc MEDIUM=netboot FLAVOUR= That means that your makefile is not correctly structured. You are invoking a recursive make but you have just plain "make" in the command script. You should be using the MAKE variable, $(MAKE), instead of "make". Alternatively you can prefix the command script with a "+" character. See the GNU make manual for more info. -- ------------------------------------------------------------------------------- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org "Please remain calm...I may be mad, but I am a professional." --Mad Scientist _______________________________________________ Help-make mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/help-make
