Skip to content

Commit

Permalink
[ios/packaging] - fixed wrong evaluation of $ARM64 (which is command …
Browse files Browse the repository at this point in the history
…true, false and can't be fed to test via []), fixes arm64 requirement during installation even while we are still building 32bit...
  • Loading branch information
Memphiz committed Feb 20, 2016
1 parent c75c091 commit e4dd1f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/darwin/packaging/ios/mkdeb-ios.sh.in
Expand Up @@ -77,7 +77,7 @@ ${SUDO} rm -rf $DIRNAME/$ARCHIVE

# create debian control file.
mkdir -p $DIRNAME/$PACKAGE/DEBIAN
if [ $ARM64 ]; then
if $ARM64; then
echo "Package: $PACKAGE_ARM64" > $DIRNAME/$PACKAGE/DEBIAN/control
echo "Name: @APP_NAME@-iOS (64-bit)" >> $DIRNAME/$PACKAGE/DEBIAN/control
echo "Depends: firmware (>= 7.0)" >> $DIRNAME/$PACKAGE/DEBIAN/control
Expand Down

5 comments on commit e4dd1f5

@lourinaldi
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this why the 16.0 .deb got masked on the cydia repo?

@Memphiz
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Masked?

@Memphiz
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Arm64 support is not contained in the jarvis branch - so whatever you assume is wrong and unrelated to this PR...

@lourinaldi
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cydia repo is failing to load properly on two different iOS 8.4 devices. Had to grab the .deb manually and dpkg -i from the terminal.

@MartijnKaijser
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@lourinaldi go the forum ask there. This is not a support section

Please sign in to comment.