summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-17 09:09:31 +0000
committergotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-17 09:09:31 +0000
commit8805e9c7909269507a9509add5156cefea1182d2 (patch)
tree353445433119d570eb2dc88066acb72418bf2487
parent384b65cb5547225c38f7756d1394deb1998fb609 (diff)
downloadruby-8805e9c7909269507a9509add5156cefea1182d2.tar.gz
ruby-8805e9c7909269507a9509add5156cefea1182d2.tar.xz
ruby-8805e9c7909269507a9509add5156cefea1182d2.zip
fix command line in 'dep'.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4559 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ext/openssl/extconf.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/extconf.rb b/ext/openssl/extconf.rb
index 1dcb5e9c7..fe2469cfc 100644
--- a/ext/openssl/extconf.rb
+++ b/ext/openssl/extconf.rb
@@ -102,7 +102,7 @@ test-link: $(OBJS)
@echo "Done."
dep:
- $(CC) $(CFLAGS) $(CPPFLAGS) -c $^ -MM | \\
+ $(CC) $(CFLAGS) $(CPPFLAGS) -c $(SRCS) -MM | \\
$(RUBY) -p -e 'BEGIN{S = []' \\
-e 'while !ARGV.empty? and /^(\\w+)=(.*)/ =~ ARGV[0]' \\
-e 'S << [/\#{Regexp.quote($$2)}\\//, "$$(\#{$$1})/"]' \\