Skip to content

Commit af9304a

Browse files
[[ Gyp ]] Remove references to src_top_dir_abs that crept back in
1 parent 20bda6c commit af9304a

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

engine/engine.gyp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@
268268
{
269269
'ldflags':
270270
[
271-
'-T', '<(src_top_dir_abs)/engine/linux.link',
271+
'-T', '$(abs_srcdir)/engine/linux.link',
272272
],
273273
},
274274
],
@@ -525,7 +525,7 @@
525525
{
526526
'ldflags':
527527
[
528-
'-T', '<(src_top_dir_abs)/engine/linux.link',
528+
'-T', '$(abs_srcdir)/engine/linux.link',
529529
],
530530
},
531531
],

prebuilt/libcurl.gyp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,9 @@
4040
[
4141
'OS == "linux"',
4242
{
43-
# Gyp doesn't seem to handle non-absolute paths here properly...
4443
'library_dirs':
4544
[
46-
'<(src_top_dir_abs)/prebuilt/lib/linux/<(target_arch)',
45+
'lib/linux/<(target_arch)',
4746
],
4847

4948
'libraries':

prebuilt/libicu.gyp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
{
157157
'library_dirs':
158158
[
159-
'<(src_top_dir_abs)/prebuilt/lib/emscripten/js',
159+
'lib/emscripten/js',
160160
],
161161

162162
'libraries':

0 commit comments

Comments
 (0)