Skip to content

Commit a6bae43

Browse files
committed
Fix whitespace
No spaces before tabs please
1 parent 978b67a commit a6bae43

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

Build/Expand.pm

+2-2
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,7 @@ sub expand {
699699
for my $q (@q) {
700700
for my $rs (@{$pkgsupplements->{$q} || []}) {
701701
if ($rs =~ /^\(.*\)$/) {
702-
my $rd = Build::Rpm::parse_rich_dep($rs);
702+
my $rd = Build::Rpm::parse_rich_dep($rs);
703703
next if !$rd || fulfilled_cplx_rec($config, \%p, $rd);
704704
} else {
705705
next unless grep {$p{$_}} @{$whatprovides->{$rs} || Build::addproviders($config, $rs)};
@@ -791,7 +791,7 @@ sub expand {
791791
for my $r (splice @native) {
792792
next if $rdone{$r}++;
793793
if ($r eq '--directdepsend--') {
794-
push @native, $r;
794+
push @native, $r;
795795
next;
796796
}
797797
my @q = @{$whatprovides->{$r} || Build::addproviders($config, $r)};

PBuild/Preset.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ my $dtd_pbuild = [
2929
'pbuild' =>
3030
[[ 'preset' =>
3131
'name',
32-
'default',
32+
'default',
3333
'arch',
3434
[ 'config' ],
3535
[ 'repo' ],

build-recipe-appimage

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ recipe_build_appimage() {
6868

6969
if test "$DO_INIT" = true; then
7070
if test -n "$DEB" -a ! -d "$BUILD_ROOT/.build.binaries/dists" ; then
71-
echo "creating debian repository metadata..."
71+
echo "creating debian repository metadata..."
7272
createrepo_debian $BUILD_ROOT/.build.binaries ${ARCH} ${DIST}
7373
# setup /etc/apt/sources.list
7474
mkdir -p "$BUILD_ROOT/etc/apt"
7575
echo "deb [trusted=yes] file:/.build.binaries OBS main" >> "$BUILD_ROOT/etc/apt/sources.list"
7676
fi
7777
if test -z "$DEB" -a ! -d "$BUILD_ROOT/.build.binaries/repodata" ; then
78-
echo "creating repository metadata..."
78+
echo "creating repository metadata..."
7979
if chroot "$BUILD_ROOT" test -x /usr/bin/createrepo_c; then
8080
chroot "$BUILD_ROOT" /usr/bin/createrepo_c /.build.binaries
8181
elif chroot "$BUILD_ROOT" test -x /usr/bin/createrepo; then

build-recipe-docker

+1-1
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ recipe_build_docker() {
312312
for format in $(queryconfig --dist "$BUILD_DIST" --configdir "$CONFIG_DIR" --archpath "$BUILD_ARCH" buildflags+ sbom | sort -u) ; do
313313
echo "Generating $format sbom file"
314314
generate_sbom --format "$format" "$TOPDIR/DOCKER/$FILENAME.tar" > "$BUILD_ROOT$TOPDIR/DOCKER/$FILENAME.${format/cyclonedx/cdx}.json"
315-
test -s "$BUILD_ROOT$TOPDIR/DOCKER/$FILENAME.${format/cyclonedx/cdx}.json" || rm -f "$BUILD_ROOT$TOPDIR/DOCKER/$FILENAME.${format/cyclonedx/cdx}.json"
315+
test -s "$BUILD_ROOT$TOPDIR/DOCKER/$FILENAME.${format/cyclonedx/cdx}.json" || rm -f "$BUILD_ROOT$TOPDIR/DOCKER/$FILENAME.${format/cyclonedx/cdx}.json"
316316
done
317317

318318
# We're done. Clean up.

initvm.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* AUTHOR
2222
* Copyright (c) 2012 James Perkins <[email protected]>
23-
* Adrian Schroeter <[email protected]>
23+
* Adrian Schroeter <[email protected]>
2424
*
2525
* This program is free software; you can redistribute it and/or modify
2626
* it under the terms of the GNU General Public License version 2 or 3 as
@@ -49,7 +49,7 @@
4949

5050
/* to enable debugging, compile with -DDEBUG */
5151
#ifdef DEBUG
52-
#define DBG(x) do { x; } while(0)
52+
#define DBG(x) do { x; } while(0)
5353
#else
5454
#define DBG(x)
5555
#endif

pbuild

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ if (!@{($bconf_host || $bconf)->{'preinstall'} || []}) {
201201
print("Preset $preset->{'name'} does not contain a build setup definition.\n");
202202
print("Please specify a distribution with the --dist option.\n");
203203
exit;
204-
}
204+
}
205205
my @presetnames = PBuild::Preset::known_presets($dir);
206206
if (@presetnames) {
207207
print("Please specify a distribution or a preset!\n\n");

0 commit comments

Comments
 (0)