From 2c3ab3edb1ccd79a9791854a539897c9c3665d24 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Sun, 8 Jan 2017 21:22:06 +0100 Subject: [PATCH] docs, build scripts: convert further mentions of drake to rake --- doc/development.md | 2 +- tools/development/add_icons.rb | 2 +- tools/macos/build.sh | 6 +++--- tools/windows/setup_cross_compilation_env.sh | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/development.md b/doc/development.md index 495157109..6f52240a5 100644 --- a/doc/development.md +++ b/doc/development.md @@ -308,5 +308,5 @@ This is a TODO list for adding a new translation (a .po file) to MKVToolNix: * Include translation's author in AUTHORS * Include message in NEWS.md * Either re-run configure or add the new translation in build-config - to TRANSLATIONS; afterwards verify the format strings with »drake + to TRANSLATIONS; afterwards verify the format strings with »rake translations:verify-format-strings« diff --git a/tools/development/add_icons.rb b/tools/development/add_icons.rb index 99c263d3a..9bc8e0725 100755 --- a/tools/development/add_icons.rb +++ b/tools/development/add_icons.rb @@ -27,4 +27,4 @@ end puts "Updating Qt resources" Dir.chdir $base_dir -system "./drake dev:update-qt-resources" +system "rake dev:update-qt-resources" diff --git a/tools/macos/build.sh b/tools/macos/build.sh index 86b06c1bc..ebc532c8a 100755 --- a/tools/macos/build.sh +++ b/tools/macos/build.sh @@ -232,8 +232,8 @@ function build_mkvtoolnix { NO_MAKE=1 NO_CONFIGURE=1 build_package mkvtoolnix-${MTX_VER}.tar.xz build_configured_mkvtoolnix - ./drake clean - ./drake + rake clean + rake } function build_dmg { @@ -249,7 +249,7 @@ function build_dmg { if [[ -z $DMG_NO_CD ]] cd ${CMPL}/mkvtoolnix-${MTX_VER} rm -rf $dmgbase - ./drake install prefix=${dmgcnt} + rake install prefix=${dmgcnt} test -f ${dmgmac}/mkvtoolnix-gui strip ${dmgcnt}/MacOS/mkv{merge,info,info-gui,extract,propedit,toolnix-gui} diff --git a/tools/windows/setup_cross_compilation_env.sh b/tools/windows/setup_cross_compilation_env.sh index d5d7140ba..148316da3 100755 --- a/tools/windows/setup_cross_compilation_env.sh +++ b/tools/windows/setup_cross_compilation_env.sh @@ -96,11 +96,11 @@ function configure_mkvtoolnix { echo if [ $result -eq 0 ]; then - echo 'Configuration went well. Congratulations. You can now run "drake"' + echo 'Configuration went well. Congratulations. You can now run "rake"' echo 'after adding the mingw cross compiler installation directory to your PATH:' echo ' export PATH='${INSTALL_DIR}'/usr/bin:$PATH' echo ' hash -r' - echo ' ./drake' + echo ' rake' else echo "Configuration failed. Look at ${LOGFILE} as well as" echo "at ./config.log for hints as to why."