Commit 4c7046d0 authored by Vladimir Bashkirtsev's avatar Vladimir Bashkirtsev

Updated diffutils to 3.7

parent 1e68b371
all: all:
tar xf diffutils-3.6.tar.xz tar xf diffutils-3.7.tar.xz
cd diffutils-3.6 && ./configure --build=$(CLFS_TARGET) --prefix=/usr cd diffutils-3.7 && ./configure --build=$(CLFS_TARGET) --prefix=/usr
$(MAKE) -C diffutils-3.6 $(MAKE) -C diffutils-3.7
if [[ ! "$(BUILD_OPTIONS)" =~ no-tests ]] ; then \ if [[ ! "$(BUILD_OPTIONS)" =~ no-tests ]] ; then \
$(MAKE) -C diffutils-3.6 check ; \ $(MAKE) -C diffutils-3.7 check ; \
fi fi
$(MAKE) -C diffutils-3.6 install $(MAKE) -C diffutils-3.7 install
rm -rf diffutils-3.6 rm -rf diffutils-3.7
<project name="diffutils"> <project name="diffutils">
<target name="temporary-diffutils"> <target name="temporary-diffutils">
<property name="makedir" value="${builddir}/diffutils-3.6"/> <property name="makedir" value="${builddir}/diffutils-3.7"/>
<exec executable="tar" failonerror="true"> <exec executable="tar" failonerror="true">
<arg line="xf packages/diffutils/diffutils-3.6.tar.xz -C ${builddir}"/> <arg line="xf packages/diffutils/diffutils-3.7.tar.xz -C ${builddir}"/>
</exec> </exec>
<exec executable="./configure" dir="${makedir}" failonerror="true"> <exec executable="./configure" dir="${makedir}" failonerror="true">
<env key="PATH" path="${PATH}"/> <env key="PATH" path="${PATH}"/>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment