Browse Source

Fix copy_file function

tags/v1.0
falkTX 4 years ago
parent
commit
719f7ee514
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      patches/qjackctl/04_apple-win32-ui-adjustments.patch
  2. +1
    -1
      setup/functions.sh

+ 1
- 1
patches/qjackctl/04_apple-win32-ui-adjustments.patch View File

@@ -68,7 +68,7 @@ index 8294606..487b7de 100644
} }
m_settings.endGroup(); 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 + // alternative custom defaults, as the mac theme does not look good with our custom widgets
+ sCustomColorTheme = "KXStudio"; + sCustomColorTheme = "KXStudio";
+ sCustomStyleTheme = "Fusion"; + sCustomStyleTheme = "Fusion";


+ 1
- 1
setup/functions.sh View File

@@ -532,7 +532,7 @@ function copy_file() {


local pkgdir="${PAWPAW_BUILDDIR}/${name}-${version}" local pkgdir="${PAWPAW_BUILDDIR}/${name}-${version}"


if [ ! -e "${pkgdir}/${target}" ]; then
if [ ! -e "${pkgdir}/${target}" ] || [ "${source}" -nt "${target}" ]; then
pushd "${pkgdir}" pushd "${pkgdir}"
cp -v "${source}" "${target}" cp -v "${source}" "${target}"
popd popd


Loading…
Cancel
Save