Skip to content

Commit

Permalink
don't add the secondaryArchSuffix on patchset export
Browse files Browse the repository at this point in the history
  • Loading branch information
TheZeldakatze committed Apr 10, 2024
1 parent b14ff61 commit 0504b5a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions HaikuPorter/Port.py
Original file line number Diff line number Diff line change
Expand Up @@ -711,14 +711,14 @@ def extractPatchset(self):
## use enumerate to avoid your own couters
for s, source in enumerate(self.sources, 1):
if s == 1:
patchSetFileName = self.name + '-' + self.version + '.patchset'
archPatchSetFileName = (self.name + '-' + self.version + '-'
patchSetFileName = self.baseName + '-' + self.version + '.patchset'
archPatchSetFileName = (self.baseName + '-' + self.version + '-'
+ self.targetArchitecture
+ '.patchset')
else:
patchSetFileName = (self.name + '-' + self.version + '-source'
patchSetFileName = (self.baseName + '-' + self.version + '-source'
+ str(s) + '.patchset')
archPatchSetFileName = (self.name + '-' + self.version + '-'
archPatchSetFileName = (self.baseName + '-' + self.version + '-'
+ self.targetArchitecture + '-source'
+ str(s) + '.patchset')
patchSetFilePath = self.patchesDir + '/' + patchSetFileName
Expand Down

0 comments on commit 0504b5a

Please sign in to comment.