#Author: Barry deFreese <bdefreese@debian.org>
#Description: Don't hardcode g++-4.1 in JLib/Makefile.
Index: holotz-castle-1.3.13-src/JLib/Makefile
===================================================================
--- holotz-castle-1.3.13-src.orig/JLib/Makefile	2009-04-08 12:58:09.000000000 -0400
+++ holotz-castle-1.3.13-src/JLib/Makefile	2009-04-08 12:58:40.000000000 -0400
@@ -29,15 +29,15 @@
 
 # JLib
 libJLib: $(JLIB_OBJS)
-	g++-4.1 -shared -L/usr/lib -fPIC -o $@.so $? \
+	g++ -shared -L/usr/lib -fPIC -o $@.so $? \
 	&& ar rvus $@.a $? \
 
 $(GRAPHICS)/%.o: $(GRAPHICS)/%.cpp
-	g++-4.1 $(CFLAGS) -c -o $@ $<
+	g++ $(CFLAGS) -c -o $@ $<
 $(UTIL)/%.o: $(UTIL)/%.cpp
-	g++-4.1 $(CFLAGS) -c -o $@ $<
+	g++ $(CFLAGS) -c -o $@ $<
 $(MATH)/%.o: $(MATH)/%.cpp
-	g++-4.1 $(CFLAGS) -c -o $@ $<
+	g++ $(CFLAGS) -c -o $@ $<
 
 .PHONY: install
 install:
