From 3cc13bcdf87e0c6c23f2bf323a92fabdb58180a7 Mon Sep 17 00:00:00 2001 From: Petr Bokoc Date: Mon, 18 Mar 2019 17:40:26 +0100 Subject: [PATCH] Clean up orphaned partials after #108 --- ...ompiling_your_application_from_source.adoc | 18 --------------- .../proc_downloading-source-code.adoc | 22 ------------------- ...local-dev-and-compilation-environment.adoc | 8 ------- 3 files changed, 48 deletions(-) delete mode 100644 modules/ROOT/pages/_partials/proc_compiling_your_application_from_source.adoc delete mode 100644 modules/ROOT/pages/_partials/proc_downloading-source-code.adoc delete mode 100644 modules/ROOT/pages/_partials/proc_setting-up-your-local-dev-and-compilation-environment.adoc diff --git a/modules/ROOT/pages/_partials/proc_compiling_your_application_from_source.adoc b/modules/ROOT/pages/_partials/proc_compiling_your_application_from_source.adoc deleted file mode 100644 index 6faf81b..0000000 --- a/modules/ROOT/pages/_partials/proc_compiling_your_application_from_source.adoc +++ /dev/null @@ -1,18 +0,0 @@ -[[compiling-your-application-from-source]] -= Compiling Your Application - -NOTE: It is preferable to use DNF to using source installattion. DNF can track what packages you have installed on your system. It facilitates updates and makes it easier to completely remove your files from your system - -. Navigate to the directory containing your source: -+ -[subs="+quotes"] ----- -cd __ ----- -+ -. Run the following command to compile and install your application: -+ -[subs="+quotes"] ----- -./configure && make && make install ----- diff --git a/modules/ROOT/pages/_partials/proc_downloading-source-code.adoc b/modules/ROOT/pages/_partials/proc_downloading-source-code.adoc deleted file mode 100644 index e17fa3e..0000000 --- a/modules/ROOT/pages/_partials/proc_downloading-source-code.adoc +++ /dev/null @@ -1,22 +0,0 @@ -= Downloading the Source Code - -. Navigate to the directory where you want to save the source: -+ -[subs="+quotes"] ----- -cd __ ----- -+ -. Download the TAR file containing the source code you want to install from: -+ -[subs="+quotes"] ----- -wget __ ----- -+ -. Extract the tarball file contents to the current working directory: -+ -[subs="+quotes"] ----- -tar -xf __ ----- diff --git a/modules/ROOT/pages/_partials/proc_setting-up-your-local-dev-and-compilation-environment.adoc b/modules/ROOT/pages/_partials/proc_setting-up-your-local-dev-and-compilation-environment.adoc deleted file mode 100644 index b7b74c7..0000000 --- a/modules/ROOT/pages/_partials/proc_setting-up-your-local-dev-and-compilation-environment.adoc +++ /dev/null @@ -1,8 +0,0 @@ -= Setting up a Development and Compiling Environment - -Install packages form the _C Development Tools and Libraries_ group: - -[subs="+quotes"] ----- -# dnf group install @c-development -----