1 diff --git a/Makefile.PL b/Makefile.PL
2 index 55c485c..8501c02 100644
5 @@ -124,14 +124,7 @@ if ($^O eq 'MSWin32' || $IS_W32API)
6 # Look for available libs
10 - -L/usr/lib/i386-linux-gnu
16 - -L/usr/local/freeglut/lib
21 @@ -764,7 +759,6 @@ sub get_extensions
22 my $exc_file = 'gl_exclude.h';
23 unlink($exc_file) if (-e $exc_file);
24 my $glv_file = 'utils/glversion.txt';
25 - unlink($glv_file) if (-e $glv_file);
27 # Only run the rest if GLUT is installed
28 print "Testing GLUT version\n" if ($verbose);
29 @@ -817,7 +811,7 @@ sub get_extensions
30 $make_ver = ";make -f Makefile " . (length($lib) ? "GLUT_LIB=$lib " : "") . (length($def) ? "GLUT_DEF=$def " : "");
31 print "glversion: '$make_ver'\n" if $verbose>1;
33 - my $exec = 'cd utils'."$make_ver clean".$make_ver;
34 + my $exec = 'cd utils'.$make_ver;
35 print "glversion: $exec\n" if ($verbose);
37 print "\n$stat\n\n" if ($verbose);
38 diff --git a/utils/Makefile b/utils/Makefile
39 index 910dcaf..1b1ac57 100644
42 @@ -21,14 +21,13 @@ EXTRALIBS=-lGLU -lXi -lXmu -lXext -lX11 -lm
45 glversion.txt: glversion
46 - ./glversion > glversion.txt
47 + echo "skipping build of glversion.txt"
49 glversion: glversion.o
50 ${LINK} glversion.o ${LDFLAGS} ${EXTRALIBS} -o glversion