Navigation Menu

Skip to content

Commit

Permalink
Removed call to 'strip' from Rakefile
Browse files Browse the repository at this point in the history
  • Loading branch information
wedesoft committed Oct 27, 2010
1 parent 7e36b0d commit 69051a7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Rakefile
Expand Up @@ -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' ]
Expand Down Expand Up @@ -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 ]
Expand Down

0 comments on commit 69051a7

Please sign in to comment.