mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
326 B

  1. case "$arch" in
  2. x86) if [ "$ROCKCFG_X86_BITS" = 32 ] ; then
  3. MY_CPU=i386
  4. else
  5. MY_CPU=amd64
  6. fi
  7. ;;
  8. ia64) MY_CPU=ia64 ;;
  9. alpha) MY_CPU=alpha ;;
  10. powerpc|sparc|hppa|mips) MY_CPU=risc ;;
  11. esac
  12. var_append makeopt ' ' "MY_CPU=$MY_CPU"
  13. hook_add postmake 5 "cp contrib/frontends/mamex.new $root/$prefix/bin/mamex"