diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-02-11 21:48:20 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-02-11 21:48:20 (GMT) |
commit | 36c7c554b83153bcfe3de1b5f0f59d0047260528 (patch) | |
tree | 3c01b529ea8385ad60418bf52c15de2a0809a949 /abs/extra-testing/romdb/romdb.install | |
parent | ab18258004ab2914dbbcb98aabceb83f255a023f (diff) | |
download | linhes_pkgbuild-36c7c554b83153bcfe3de1b5f0f59d0047260528.zip linhes_pkgbuild-36c7c554b83153bcfe3de1b5f0f59d0047260528.tar.gz linhes_pkgbuild-36c7c554b83153bcfe3de1b5f0f59d0047260528.tar.bz2 |
Fixed error in .sql that prevented import.
Diffstat (limited to 'abs/extra-testing/romdb/romdb.install')
-rw-r--r-- | abs/extra-testing/romdb/romdb.install | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/abs/extra-testing/romdb/romdb.install b/abs/extra-testing/romdb/romdb.install index f2934c7..4ef33d4 100644 --- a/abs/extra-testing/romdb/romdb.install +++ b/abs/extra-testing/romdb/romdb.install @@ -4,12 +4,14 @@ post_install() { } # arg 1: the new package version # arg 2: the old package version -#post_upgrade() { -#} +post_upgrade() { + /bin/true +} # arg 1: the old package version -#post_remove() { -#} +post_remove() { + /bin/true +} op=$1 shift |