diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2014-01-13 12:32:33 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-01-13 12:38:58 +0000 |
commit | af19c757deed76656ca90f2c0a90880350f905cf (patch) | |
tree | 0f57296aff0f68e17896b5a797c168e86e665035 | |
parent | abfc6c29ef068714e299151d78096af483c4e275 (diff) | |
download | abuild-af19c757deed76656ca90f2c0a90880350f905cf.tar.gz abuild-af19c757deed76656ca90f2c0a90880350f905cf.tar.bz2 abuild-af19c757deed76656ca90f2c0a90880350f905cf.tar.xz abuild-af19c757deed76656ca90f2c0a90880350f905cf.zip |
buildrepo: set pkgrel to 0 by default
-rwxr-xr-x | buildrepo.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildrepo.in b/buildrepo.in index 0cf3a8f..f489908 100755 --- a/buildrepo.in +++ b/buildrepo.in @@ -53,7 +53,7 @@ listpackages() { cd "$aportsdir/$repo"/${i%/*} || return 1 pkgname= pkgver= - pkgrel= + pkgrel=0 subpackages= arch= linguas= @@ -94,7 +94,7 @@ list_needbuild() { cd "$aportsdir/$repo"/${apkbuild%/*} || return 1 pkgname= pkgver= - pkgrel= + pkgrel=0 subpackages= arch= . ./APKBUILD |