|
From: Arnaud Gomes-do-V. <Arn...@ir...> - 2013-04-25 15:03:54
|
Heiko Zuerker <he...@zu...> writes:
> Thanks for pointing this out. I added it to the todo list.
> It may be quite a while until I get to it....
I think I have found the cause: the vlan source tarball includes an old
32-bit binary. The following patch to scripts/vlan should fix the issue:
--- vlan.orig 2013-04-25 17:00:30.801291551 +0200
+++ vlan 2013-04-25 17:01:22.121923713 +0200
@@ -18,7 +18,7 @@
case $1 in
build )
if [ "$CONFIG_VLAN" = "y" ]; then
- make $PMAKE all || exit 1
+ make $PMAKE purge vconfig || exit 1
fi
;;
@@ -28,7 +28,7 @@
rm -rf $TMPDIR || exit 1
copy_man
mkdir -p $TMPDIR || exit 1
- make all DESTDIR=$TMPDIR || exit 1
+ make purge vconfig DESTDIR=$TMPDIR || exit 1
mkdir -p $CDDIR/bin
cp vconfig $CDDIR/bin || exit 1
rm -rf $TMPDIR || exit 1
--
A
|