corrected mac dist paths
This commit is contained in:
parent
a439d9826e
commit
7cc7717563
|
@ -48,9 +48,9 @@ class InternalCommands:
|
||||||
doxygen_filename = 'doxygen.cfg'
|
doxygen_filename = 'doxygen.cfg'
|
||||||
|
|
||||||
macZipFiles = [
|
macZipFiles = [
|
||||||
'src/cmd/synergyc/synergyc',
|
'../../bin/release/synergyc',
|
||||||
'src/cmd/synergys/synergys',
|
'../../bin/release/synergys',
|
||||||
'../QSynergy.app',
|
'../../bin/QSynergy.app',
|
||||||
'../../doc/synergy.conf.example',
|
'../../doc/synergy.conf.example',
|
||||||
'../../doc/MacReadme.txt']
|
'../../doc/MacReadme.txt']
|
||||||
|
|
||||||
|
@ -445,7 +445,7 @@ class InternalCommands:
|
||||||
package_unsupported = False
|
package_unsupported = False
|
||||||
unixTarget = 'release'
|
unixTarget = 'release'
|
||||||
|
|
||||||
if type != 'win':
|
if type != 'win' and type != 'mac':
|
||||||
self.configure_internal(unixTarget, '-DCONF_CPACK:BOOL=TRUE')
|
self.configure_internal(unixTarget, '-DCONF_CPACK:BOOL=TRUE')
|
||||||
|
|
||||||
# make sure we have a release build to package
|
# make sure we have a release build to package
|
||||||
|
@ -539,7 +539,7 @@ class InternalCommands:
|
||||||
else:
|
else:
|
||||||
shutil.copy2(f, zipFile + '/')
|
shutil.copy2(f, zipFile + '/')
|
||||||
|
|
||||||
zipCmd = ('zip -r ' + zipFile + '.zip ' + zipFile);
|
zipCmd = ('zip -r ../../' + self.bin_dir + '/' + zipFile + '.zip ' + zipFile);
|
||||||
|
|
||||||
print 'Creating package: ' + zipCmd
|
print 'Creating package: ' + zipCmd
|
||||||
err = os.system(zipCmd)
|
err = os.system(zipCmd)
|
||||||
|
|
Loading…
Reference in New Issue