Skip to content

Commit

Permalink
don't add the secondaryArchSuffix on patchset export (#285)
Browse files Browse the repository at this point in the history
Co-authored-by: zeldakatze <mail@zeldakatze.de>
Co-authored-by: Adrien Destugues <pulkomandy@pulkomandy.tk>
Co-authored-by: OscarL <oscar.lesta@gmail.com>
  • Loading branch information
4 people committed Aug 29, 2024
1 parent 39095f1 commit bd52d9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions HaikuPorter/Port.py
Original file line number Diff line number Diff line change
Expand Up @@ -706,12 +706,12 @@ 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'
patchSetFileName = self.baseName + '-' + self.version + '.patchset'
archPatchSetFileName = (self.name + '-' + 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 + '-'
+ self.targetArchitecture + '-source'
Expand Down

0 comments on commit bd52d9c

Please sign in to comment.