FIXUPHACK 939 B

12345678910111213141516171819
  1. #slackware post-install script stuffs things up...
  2. #note, 2createpackages renames slackware doinst.sh to pinstall.sh and moves
  3. # it to woof-unleashed/sandbox2b directory.
  4. #2createpackages will read this and not run the post-install script...
  5. DISABLE_POST_INSTALL_SCRIPT=yes
  6. #101012 have restored proper name of depmod, comment out...
  7. ##w481 depmod is really crappy, doesn't work in low-ram, have now compiled recent
  8. ##busybox with depmod so use that...
  9. #mv -f sbin/depmod sbin/depmod-FULL
  10. #100527 make link relative (orig pkg may have absolute)... 110906 improve logic...
  11. #111204 01micko reported this is wrong for slacko...
  12. # (module-init-tools has a post-install script that stuffs things up, but above variable disables it)
  13. [ -e bin/lsmod ] && [ ! -h bin/lsmod ] && ln -snf ../bin/lsmod sbin/lsmod
  14. [ -e sbin/lsmod ] && [ ! -h sbin/lsmod ] && ln -snf ../sbin/lsmod bin/lsmod #dummy lsmod moved to sbin 110905 slackware-13.37 01micko