Skip to content

Commit f8fedfb

Browse files
committed
[lldb] Fix TestSharedLibStrippedSymbols for #90622
`ifeq` needs to be at the beginning of a line, otherwise it's interpreted as part of the recipe.
1 parent 4ad6962 commit f8fedfb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/packages/Python/lldbsuite/test/make/Makefile.rules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -629,9 +629,9 @@ endif
629629
else
630630
$(LD) $(DYLIB_OBJECTS) $(LDFLAGS) -shared -o "$(DYLIB_FILENAME)"
631631
ifeq "$(SPLIT_DEBUG_SYMBOLS)" "YES"
632-
ifeq "$(SAVE_FULL_DEBUG_BINARY)" "YES"
632+
ifeq "$(SAVE_FULL_DEBUG_BINARY)" "YES"
633633
cp "$(DYLIB_FILENAME)" "$(DYLIB_FILENAME).unstripped"
634-
endif
634+
endif
635635
$(OBJCOPY) --only-keep-debug "$(DYLIB_FILENAME)" "$(DYLIB_FILENAME).debug"
636636
$(OBJCOPY) --strip-debug --add-gnu-debuglink="$(DYLIB_FILENAME).debug" "$(DYLIB_FILENAME)" "$(DYLIB_FILENAME)"
637637
endif

0 commit comments

Comments
 (0)