Skip to content

Commit

Permalink
Fixed "duplicate output file" warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
tladesignz committed Sep 21, 2022
1 parent a7b9197 commit 6cd98f0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
Tor: f7abf48f074552b5004a6899784c35c17762d8e9
Tor: 77ae825db3972534215777089e00560757e04104

PODFILE CHECKSUM: 2e6b5ce7c35de39ebc7cf8a7851f871a1d793275

Expand Down
8 changes: 4 additions & 4 deletions Tor.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -50,25 +50,25 @@ ENDSCRIPT
{
:name => 'Build XZ',
:execution_position => :before_compile,
:output_files => ['dummy-always-execute-this-but-supress warning'],
:output_files => ['dummy-always-execute-this-but-supress warning-1'],
:script => sprintf(script, "xz")
},
{
:name => 'Build OpenSSL',
:execution_position => :before_compile,
:output_files => ['dummy-always-execute-this-but-supress warning'],
:output_files => ['dummy-always-execute-this-but-supress warning-2'],
:script => sprintf(script, "openssl")
},
{
:name => 'Build libevent',
:execution_position => :before_compile,
:output_files => ['dummy-always-execute-this-but-supress warning'],
:output_files => ['dummy-always-execute-this-but-supress warning-3'],
:script => sprintf(script, "libevent")
},
{
:name => 'Build Tor',
:execution_position => :before_compile,
:output_files => ['dummy-always-execute-this-but-supress warning'],
:output_files => ['dummy-always-execute-this-but-supress warning-4'],
:script => sprintf(script, "tor")
},
]
Expand Down
10 changes: 5 additions & 5 deletions TorStatic.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -58,31 +58,31 @@ ENDSCRIPT
{
:name => 'Build XZ',
:execution_position => :before_compile,
:output_files => ['dummy-always-execute-this-but-supress warning'],
:output_files => ['dummy-always-execute-this-but-supress warning-1'],
:script => sprintf(script, "xz")
},
{
:name => 'Build OpenSSL',
:execution_position => :before_compile,
:output_files => ['dummy-always-execute-this-but-supress warning'],
:output_files => ['dummy-always-execute-this-but-supress warning-2'],
:script => sprintf(script, "openssl")
},
{
:name => 'Build libevent',
:execution_position => :before_compile,
:output_files => ['dummy-always-execute-this-but-supress warning'],
:output_files => ['dummy-always-execute-this-but-supress warning-3'],
:script => sprintf(script, "libevent")
},
{
:name => 'Build Tor',
:execution_position => :before_compile,
:output_files => ['dummy-always-execute-this-but-supress warning'],
:output_files => ['dummy-always-execute-this-but-supress warning-4'],
:script => sprintf(script, "tor")
},
{
:name => 'Link Headers',
:execution_position => :before_compile,
:output_files => ['dummy-always-execute-this-but-supress warning'],
:output_files => ['dummy-always-execute-this-but-supress warning-5'],
:script => <<-ENDSCRIPT
mkdir -p "${PODS_ROOT}/Headers/Public/Tor"
cd "${PODS_ROOT}/Headers/Public/Tor"
Expand Down

0 comments on commit 6cd98f0

Please sign in to comment.