Skip to content

Commit

Permalink
v0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ttwj committed Jun 20, 2012
1 parent c9ccc7f commit e8b3f8f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions Clutch.xcodeproj/project.pbxproj
Expand Up @@ -333,7 +333,10 @@
C01FCF4F08A954540054247B /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
ARCHS = (
armv7,
armv6,
);
CODE_SIGN_IDENTITY = "Don't Code Sign";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Don't Code Sign";
GCC_C_LANGUAGE_STANDARD = c99;
Expand All @@ -348,7 +351,10 @@
C01FCF5008A954540054247B /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
ARCHS = (
armv7,
armv6,
);
CODE_SIGN_IDENTITY = "Don't Code Sign";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Don't Code Sign";
GCC_C_LANGUAGE_STANDARD = c99;
Expand Down
2 changes: 1 addition & 1 deletion main.m
Expand Up @@ -15,7 +15,7 @@ int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];

if (getuid() != 0) {
printf("You must be root to use Clutch.\n");
printf("You must be root to use ClutchMod.\n");
goto endMain;
}

Expand Down

0 comments on commit e8b3f8f

Please sign in to comment.