diff --git a/patches/qjackctl/04_apple-win32-ui-adjustments.patch b/patches/qjackctl/04_apple-win32-ui-adjustments.patch index 4ecd163..dc3299b 100644 --- a/patches/qjackctl/04_apple-win32-ui-adjustments.patch +++ b/patches/qjackctl/04_apple-win32-ui-adjustments.patch @@ -68,7 +68,7 @@ index 8294606..487b7de 100644 } m_settings.endGroup(); -+#ifdef __APPLE__ ++#if defined(__WIN32__) || defined(_WIN32) || defined(WIN32) || defined(__APPLE__) + // alternative custom defaults, as the mac theme does not look good with our custom widgets + sCustomColorTheme = "KXStudio"; + sCustomStyleTheme = "Fusion"; diff --git a/setup/functions.sh b/setup/functions.sh index 336b3aa..622f4ed 100644 --- a/setup/functions.sh +++ b/setup/functions.sh @@ -532,7 +532,7 @@ function copy_file() { local pkgdir="${PAWPAW_BUILDDIR}/${name}-${version}" - if [ ! -e "${pkgdir}/${target}" ]; then + if [ ! -e "${pkgdir}/${target}" ] || [ "${source}" -nt "${target}" ]; then pushd "${pkgdir}" cp -v "${source}" "${target}" popd