Skip to content

Commit d6d857b

Browse files
committed
makefile: fix typo on fbrt build options RTL_LIBS => FBRTL_LIBS
1 parent 58c71ba commit d6d857b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,7 @@ install-rtlib: rtlib
865865

866866
install-fbrt: fbrt
867867
mkdir -p $(DESTDIR)$(prefixlibdir)
868-
$(INSTALL_FILE) $(RTL_LIBS) $(DESTDIR)$(prefixlibdir)
868+
$(INSTALL_FILE) $(FBRTL_LIBS) $(DESTDIR)$(prefixlibdir)
869869

870870
install-gfxlib2: gfxlib2
871871
mkdir -p $(DESTDIR)$(prefixlibdir)
@@ -887,7 +887,7 @@ uninstall-rtlib:
887887
rm -f $(patsubst $(libdir)/%,$(DESTDIR)$(prefixlibdir)/%,$(RTL_LIBS))
888888

889889
uninstall-fbrt:
890-
rm -f $(patsubst $(libdir)/%,$(DESTDIR)$(prefixlibdir)/%,$(RTL_LIBS))
890+
rm -f $(patsubst $(libdir)/%,$(DESTDIR)$(prefixlibdir)/%,$(FBRTL_LIBS))
891891

892892
uninstall-gfxlib2:
893893
rm -f $(patsubst $(libdir)/%,$(DESTDIR)$(prefixlibdir)/%,$(GFX_LIBS))
@@ -910,7 +910,7 @@ clean-rtlib:
910910
endif
911911

912912
clean-fbrt:
913-
rm -rf $(RTL_LIBS) $(libfbrtobjdir)
913+
rm -rf $(FBRTL_LIBS) $(libfbrtobjdir)
914914

915915
clean-gfxlib2:
916916
rm -rf $(GFX_LIBS) $(libfbgfxobjdir)

0 commit comments

Comments
 (0)