Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

install/dev-tools: Add awk to OpenSUSE installer(s) #277

Merged
merged 1 commit into from
Sep 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions dev-tools/install-dev-software.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ BOOTSTRAP_GIT_REPO_REQUIRED="false"
# NOTICE: Certain changes here must potentially be reflected
# in the ../install/install-snoopy.sh file too.
#
PROGRAM_NAMES="autoconf aclocal curl diff file find gcc git gzip hostname libtoolize m4 make ps socat tar wget"
PACKAGE_NAMES_ALPINE="autoconf automake curl diffutils file gcc git gzip libtool m4 make procps socat tar wget alpine-sdk"
PACKAGE_NAMES_ARCH="autoconf automake curl diffutils file gcc git gzip inetutils libtool m4 make procps socat tar wget"
PACKAGE_NAMES_DEBIAN="autoconf automake curl diffutils file gcc git gzip libtool m4 make procps socat tar wget"
PACKAGE_NAMES_REDHAT="autoconf automake curl diffutils file gcc git gzip hostname libtool m4 make procps socat tar wget"
PACKAGE_NAMES_SUSE="autoconf automake curl diffutils file findutils gcc git gzip hostname libtool m4 make procps socat tar wget"
PROGRAM_NAMES="autoconf aclocal curl diff file find gcc git gzip hostname libtoolize m4 make ps socat tar wget"
PACKAGE_NAMES_ALPINE="autoconf automake curl diffutils file gcc git gzip libtool m4 make procps socat tar wget alpine-sdk"
PACKAGE_NAMES_ARCH="autoconf automake curl diffutils file gcc git gzip inetutils libtool m4 make procps socat tar wget"
PACKAGE_NAMES_DEBIAN="autoconf automake curl diffutils file gcc git gzip libtool m4 make procps socat tar wget"
PACKAGE_NAMES_REDHAT="autoconf automake curl diffutils file gcc git gzip hostname libtool m4 make procps socat tar wget"
PACKAGE_NAMES_SUSE="autoconf automake awk curl diffutils file findutils gcc git gzip hostname libtool m4 make procps socat tar wget"



Expand Down
24 changes: 12 additions & 12 deletions install/install-snoopy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -261,19 +261,19 @@ _installPackages()
#
#

PROGRAM_NAMES="find gcc gzip make ps socat tar wget"
PACKAGE_NAMES_ALPINE=" gcc gzip make procps socat tar wget alpine-sdk"
PACKAGE_NAMES_ARCH=" gcc gzip make procps socat tar wget"
PACKAGE_NAMES_DEBIAN=" gcc gzip make procps socat tar wget"
PACKAGE_NAMES_REDHAT=" gcc gzip make procps socat tar wget"
PACKAGE_NAMES_SUSE="findutils gcc gzip make procps socat tar wget"
PROGRAM_NAMES=" find gcc gzip make ps socat tar wget"
PACKAGE_NAMES_ALPINE=" gcc gzip make procps socat tar wget alpine-sdk"
PACKAGE_NAMES_ARCH=" gcc gzip make procps socat tar wget"
PACKAGE_NAMES_DEBIAN=" gcc gzip make procps socat tar wget"
PACKAGE_NAMES_REDHAT=" gcc gzip make procps socat tar wget"
PACKAGE_NAMES_SUSE="awk findutils gcc gzip make procps socat tar wget"
if [ "$SNOOPY_SOURCE_TYPE" == "git" ]; then
PROGRAM_NAMES="autoconf aclocal curl find gcc git gzip hostname libtoolize m4 make ps socat tar wget"
PACKAGE_NAMES_ALPINE="autoconf automake curl gcc git gzip libtool m4 make procps socat tar wget alpine-sdk"
PACKAGE_NAMES_ARCH="autoconf automake curl gcc git gzip inetutils libtool m4 make procps socat tar wget"
PACKAGE_NAMES_DEBIAN="autoconf automake curl gcc git gzip libtool m4 make procps socat tar wget"
PACKAGE_NAMES_REDHAT="autoconf automake curl gcc git gzip hostname libtool m4 make procps socat tar wget"
PACKAGE_NAMES_SUSE="autoconf automake curl findutils gcc git gzip hostname libtool m4 make procps socat tar wget"
PROGRAM_NAMES="autoconf aclocal curl find gcc git gzip hostname libtoolize m4 make ps socat tar wget"
PACKAGE_NAMES_ALPINE="autoconf automake curl gcc git gzip libtool m4 make procps socat tar wget alpine-sdk"
PACKAGE_NAMES_ARCH="autoconf automake curl gcc git gzip inetutils libtool m4 make procps socat tar wget"
PACKAGE_NAMES_DEBIAN="autoconf automake curl gcc git gzip libtool m4 make procps socat tar wget"
PACKAGE_NAMES_REDHAT="autoconf automake curl gcc git gzip hostname libtool m4 make procps socat tar wget"
PACKAGE_NAMES_SUSE="autoconf automake awk curl findutils gcc git gzip hostname libtool m4 make procps socat tar wget"
fi

if _areAllRequiredProgramsPresent "$PROGRAM_NAMES"; then
Expand Down
Loading