ports/graphics/mandelbulber/patches/patch-makefiles_makefile

13 lines
473 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
Index: makefiles/makefile
--- makefiles/makefile.orig
+++ makefiles/makefile
@@ -44,7 +44,7 @@ all: mandelbulber
mandelbulber: $(OBJS) $(USER_OBJS)
@echo 'Building target: $@'
@echo 'Invoking: GCC C++ Linker'
- g++ -o"mandelbulber" -L/usr/lib/x86_64-linux-gnu/ $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS) $(OBJS) $(USER_OBJS) $(LIBS)
+ ${CXX} -o"mandelbulber" $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS) $(OBJS) $(USER_OBJS) $(LIBS)
@echo 'Finished building target: $@'
@echo ' '