Changeset 939731a


Ignore:
Timestamp:
03/29/2020 01:46:19 PM (4 years ago)
Author:
Pierre Labastie <pierre@…>
Branches:
ablfs-more, legacy, trunk
Children:
903eefd
Parents:
123105f
Message:

No need to prin DU from Makefile in LFS

We now print the disk usage from the scriptlet, so printing
again from the Makefile results in a duplicated line. Remove
the printing if book=lfs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • common/libs/func_wrt_Makefile

    r123105f r939731a  
    323323        @export ${MOUNT_ENV}=\$(MOUNT_PT) && \\
    324324        ${PROGNAME}-commands/`dirname $file`/\$@ >>logs/\$@$version 2>&1 && \\
    325         \$(PRT_DU) >>logs/\$@$version
     325        if [ "${PROGNAME}" != lfs ]; then \\
     326            \$(PRT_DU) >>logs/\$@$version; \\
     327        fi
    326328EOF
    327329) >> $MKFILE.tmp
Note: See TracChangeset for help on using the changeset viewer.