# HG changeset patch # User Rob Landley # Date 1446448498 21600 # Node ID a49c6d9353bf36bd960edbcf53037ded7db557fb # Parent 315c9e9af893f27aa25dc2a174861f2ffac52f5b Don't overwrite existing files in busybox install. diff -r 315c9e9af893 -r a49c6d9353bf sources/sections/busybox.build --- a/sources/sections/busybox.build Mon Nov 02 01:14:08 2015 -0600 +++ b/sources/sections/busybox.build Mon Nov 02 01:14:58 2015 -0600 @@ -30,7 +30,7 @@ then continue fi - [ ! -f "$INSTDIR/$i" ] && (ln -sf busybox "$INSTDIR/$i" || dienow) + [ ! -e "$INSTDIR/$i" ] && (ln -s busybox "$INSTDIR/$i" || dienow) done # Reset error condition, the last file already existing is not an error