Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

452 Commits   2 Branches   1 Tag
   192         kx #!/bin/bash
   192         kx 
   192         kx # Allow users to override command-line options
   192         kx for file in /etc/chromium/*.conf ; do
   192         kx   [[ -f ${file} ]] && source "${file}"
   192         kx done
   192         kx 
   192         kx # Prefer user defined @CRUSERFLAGS@ flags (from environment)
   192         kx # over system default @CRFLAGS@ (from /etc/chromium/)
   192         kx @CRFLAGS@=${@CRUSERFLAGS@:-$@CRFLAGS@}
   192         kx 
   192         kx export CHROME_WRAPPER=$(readlink -f "$0")
   192         kx export CHROME_DESKTOP=chromium.desktop
   192         kx 
   192         kx exec /usr/lib@LIBDIRSUFFIX@/chromium/chromium $@CRFLAGS@ "$@"