From 69051a75b604be7b73902c53e7fade1ed4bc9fae Mon Sep 17 00:00:00 2001 From: Jan Wedekind Date: Wed, 27 Oct 2010 18:15:49 +0100 Subject: [PATCH] Removed call to 'strip' from Rakefile --- Rakefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Rakefile b/Rakefile index 3cc9b1b..0e709b8 100644 --- a/Rakefile +++ b/Rakefile @@ -9,7 +9,6 @@ require 'rbconfig' PKG_NAME = 'hornetseye-qt4' PKG_VERSION = '0.1.0' CXX = ENV[ 'CXX' ] || 'g++' -STRIP = ENV[ 'STRIP' ] || 'strip' RB_FILES = FileList[ 'lib/**/*.rb' ] CC_FILES = FileList[ 'ext/*.cc' ] HH_FILES = FileList[ 'ext/*.hh' ] + FileList[ 'ext/*.tcc' ] @@ -46,7 +45,6 @@ task :all => [ SO_FILE ] file SO_FILE => OBJ do |t| sh "#{CXX} -shared -o #{t.name} #{OBJ} -lX11 -lXv -lQtGui -lQtCore #{$LIBRUBYARG}" - sh "#{STRIP} --strip-all #{t.name}" end task :test => [ SO_FILE ]