Commit 916ef1ef authored by Vladimir Bashkirtsev's avatar Vladimir Bashkirtsev

We should avoid .git files as they may spook building of packages

parent 3b38d6ae
...@@ -149,9 +149,13 @@ ...@@ -149,9 +149,13 @@
</target> </target>
<target name="fill-secondary"> <target name="fill-secondary">
<exec executable="cp" failonerror="true"> <mkdir dir="${sysdir}/packages"/>
<arg line="-drv ${basedir}/packages ${sysdir}"/> <copy todir="${sysdir}/packages" failonerror="true">
</exec> <fileset dir="${basedir}/packages">
<include name="**/*"/>
<exclude name="**/.git"/>
</fileset>
</copy>
<exec executable="cp" failonerror="true"> <exec executable="cp" failonerror="true">
<arg line="-drv ${basedir}/build-system/Makefile.common ${sysdir}/packages"/> <arg line="-drv ${basedir}/build-system/Makefile.common ${sysdir}/packages"/>
</exec> </exec>
......
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