Ticket #39456: patch-buildsystem.diff
File patch-buildsystem.diff, 2.0 KB (added by raimue (Rainer Müller), 11 years ago) |
---|
-
build.sh
old new 12 12 # Beware: GNU libtool cannot handle directory names containing whitespace. 13 13 # Therefore, do not set M_CONF_TMPDIR to such a directory. 14 14 # 15 readonly M_CONF_TMPDIR= /tmp15 readonly M_CONF_TMPDIR=@@TMP@@ 16 16 readonly M_PLISTSIGNER_TEST_KEY="`dirname $0`/prefpane/autoinstaller/TestKeys/private_key.der" 17 17 18 18 # Other constants … … 98 98 declare M_XCODE_VERSION_REQUIRED="" 99 99 100 100 # SDK 10.5 101 readonly M_SDK_105_ARCHS=" ppc ppc64 i386 x86_64"101 readonly M_SDK_105_ARCHS="@@ARCHS@@" 102 102 declare M_SDK_105="" 103 103 declare M_SDK_105_XCODE="" 104 104 declare M_SDK_105_COMPILER="" 105 105 106 106 # SDK 10.6 107 readonly M_SDK_106_ARCHS=" i386 x86_64"107 readonly M_SDK_106_ARCHS="@@ARCHS@@" 108 108 declare M_SDK_106="" 109 109 declare M_SDK_106_XCODE="" 110 110 declare M_SDK_106_COMPILER="" 111 111 112 112 # SDK 10.7 113 readonly M_SDK_107_ARCHS=" i386 x86_64"113 readonly M_SDK_107_ARCHS="@@ARCHS@@" 114 114 declare M_SDK_107="" 115 115 declare M_SDK_107_XCODE="" 116 116 declare M_SDK_107_COMPILER="" 117 117 118 118 # SDK 10.8 119 readonly M_SDK_108_ARCHS=" i386 x86_64"119 readonly M_SDK_108_ARCHS="@@ARCHS@@" 120 120 declare M_SDK_108="" 121 121 declare M_SDK_108_XCODE="" 122 122 declare M_SDK_108_COMPILER="" 123 123 124 124 # SDK 10.9 125 readonly M_SDK_109_ARCHS=" i386 x86_64"125 readonly M_SDK_109_ARCHS="@@ARCHS@@" 126 126 declare M_SDK_109="" 127 127 declare M_SDK_109_XCODE="" 128 128 declare M_SDK_109_COMPILER="" … … 1841 1841 1842 1842 local ms_osxfuse_out="$M_CONF_TMPDIR/osxfuse-homebrew-$ms_os_version-$ms_osxfuse_version" 1843 1843 local ms_osxfuse_build="$ms_osxfuse_out/build/" 1844 local ms_osxfuse_root=" $m_prefix"1844 local ms_osxfuse_root="@@DESTROOT@@$m_prefix" 1845 1845 1846 1846 if [ -e "$ms_osxfuse_out" ] 1847 1847 then … … 1945 1945 xcrun make -j4 >$m_stdout 2>$m_stderr 1946 1946 m_exit_on_error "make failed while compiling the OSXFUSE library." 1947 1947 1948 xcrun make install >$m_stdout 2>$m_stderr1948 xcrun make install DESTDIR="@@DESTROOT@@" >$m_stdout 2>$m_stderr 1949 1949 m_exit_on_error "cannot prepare library build for installation." 1950 1950 1951 1951 for f in "$ms_osxfuse_root"/lib/libosxfuse_i64*.dylib; do