From 04f7c28dab26959b906444fcc7d9e0886ef3ad27 Mon Sep 17 00:00:00 2001 From: aliriza Date: Thu, 29 Aug 2024 01:44:14 +0300 Subject: [PATCH] doc fix --- doc/ympbuild.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/ympbuild.rst b/doc/ympbuild.rst index 3c43bf6..d22239e 100755 --- a/doc/ympbuild.rst +++ b/doc/ympbuild.rst @@ -128,7 +128,7 @@ Ymp can compile a package multiple time in same package. You can define multipl .. code-block:: shell ... - buildtypes=(64bit 32bit) + buildtypes=(foo bar bazz) ... You can check buildtype like this in ympbuild file @@ -136,12 +136,12 @@ You can check buildtype like this in ympbuild file .. code-block:: shell ... - if buildtype 32bit ; then - export CFLAGS="$CFLAGS -m32" + if buildtype foo ; then + export CFLAGS="..." fi # or check BUILDTYPE environment - if [[ "$BUILDTYPE" == "32bit" ]] ; then - export CFLAGS="$CFLAGS -m32" + if [[ "$BUILDTYPE" == "bar" ]] ; then + export CFLAGS="..." fi ...