diff options
Diffstat (limited to 'debian/postinst')
-rwxr-xr-x | debian/postinst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/debian/postinst b/debian/postinst index ff2566925..9aeb9b480 100755 --- a/debian/postinst +++ b/debian/postinst @@ -142,13 +142,13 @@ if [ ! -f status ] then echo 'Adding "status" file to dpkg system database ...' - rm -f /tmp/dpp.$$ || true + rm -f dpp.$$ || true - ls -1 deb/*.control >/tmp/dpp.$$ + ls -1 deb/*.control >dpp.$$ sed -e 's:^deb/::; s:\.control$: Install OK Installed:;' \ - </tmp/dpp.$$ >status.new + <dpp.$$ >status.new - rm /tmp/dpp.$$ + rm dpp.$$ mv status.new status fi |