# HG changeset patch # User Christopher Rogers # Date 1288723544 0 # Node ID 9ef6ce9ac6cc0d4e99641e55d99038d124dc0223 # Parent 16fab315e2d697bfc1dd26165a31e19cb0361dcf Fixed busybox-pam to have to be compile on its own. Only cause if its a wanted package of busybox it will just repackage the older busybox-pam build. diff -r 16fab315e2d6 -r 9ef6ce9ac6cc busybox-pam/receipt --- a/busybox-pam/receipt Tue Nov 02 23:14:11 2010 +0100 +++ b/busybox-pam/receipt Tue Nov 02 18:45:44 2010 +0000 @@ -54,38 +54,35 @@ cp -a stuff/etc $fs mkdir -p $fs/etc/init.d # Busybox config files. - # genpkg busybox-pam depends on busybox config files - # Note: no space/tab before WANTED -WANTED="busybox" - cd $WOK/$SOURCE fs=$WOK/$PACKAGE/taz/$PACKAGE-$VERSION/fs - cp stuff/busybox.conf $fs/etc + busybox_stuff=$WOK/$SOURCE/stuff + cp $busybox_stuff/busybox.conf $fs/etc chmod 600 $fs/etc/busybox.conf - cp stuff/dnsd.conf $fs/etc - cp stuff/udhcpd.conf $fs/etc + cp $busybox_stuff/dnsd.conf $fs/etc + cp $busybox_stuff/udhcpd.conf $fs/etc touch $fs/etc/resolv.conf - cp stuff/inetd.conf $fs/etc - cp stuff/daemon $fs/etc/init.d + cp $busybox_stuff/inetd.conf $fs/etc + cp $busybox_stuff/daemon $fs/etc/init.d for i in crond dnsd ftpd httpd inetd klogd ntpd syslogd telnetd tftpd \ udhcpd zcip ; do grep -qi config_$i=y $src/.config && ln -s daemon $fs/etc/init.d/$i done - cp stuff/init $fs + cp $busybox_stuff/init $fs rm $fs/linuxrc mkdir -p $fs/etc/modprobe.d # Udhcpc stuff. mkdir -p $fs/usr/share/udhcpc - cp stuff/udhcp.script $fs/usr/share/udhcpc/default.script + cp $busybox_stuff/udhcp.script $fs/usr/share/udhcpc/default.script chmod +x $fs/usr/share/udhcpc/default.script # ZeroConf stuff. - cp stuff/zcip.script $fs/etc + cp $busybox_stuff/zcip.script $fs/etc # Httpd stuff. - cp stuff/httpd_helper.sh $fs/usr/bin + cp $busybox_stuff/httpd_helper.sh $fs/usr/bin chmod +x $fs/usr/bin/httpd_helper.sh # .desktop stuff mkdir -p $fs/usr/share - cp -a stuff/applications $fs/usr/share + cp -a $busybox_stuff/applications $fs/usr/share } # Force glibc-2.7 reinstall if 2.3.6 still in use.