diff options
author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-17 09:09:31 +0000 |
---|---|---|
committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-17 09:09:31 +0000 |
commit | 8805e9c7909269507a9509add5156cefea1182d2 (patch) | |
tree | 353445433119d570eb2dc88066acb72418bf2487 | |
parent | 384b65cb5547225c38f7756d1394deb1998fb609 (diff) | |
download | ruby-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.rb | 2 |
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})/"]' \\ |