diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2006-01-22 01:55:36 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2006-01-22 01:55:36 +0000 |
commit | e33233f948fa75569942bda3f34c065ad24f1576 (patch) | |
tree | 7b858f4e784b4f518405b5a934eaa29ec91c8256 /emulators/raine | |
parent | 913a5a5cbae4d0f429ae82617b4e1fca51867d49 (diff) | |
download | ports-e33233f948fa75569942bda3f34c065ad24f1576.tar.gz ports-e33233f948fa75569942bda3f34c065ad24f1576.zip |
Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtry
Approved by: krion@
PR: ports/88711 (related)
Notes
Notes:
svn path=/head/; revision=154110
Diffstat (limited to 'emulators/raine')
-rw-r--r-- | emulators/raine/pkg-plist | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/emulators/raine/pkg-plist b/emulators/raine/pkg-plist index f8c2b88dce61..c5e37ad57f63 100644 --- a/emulators/raine/pkg-plist +++ b/emulators/raine/pkg-plist @@ -26,8 +26,8 @@ bin/raine %%DATADIR%%/raine.dat share/gnome/applications/raine.desktop share/gnome/pixmaps/raine.png -@unexec rmdir %D/%%DATADIR%%/roms 2> /dev/null || true -@unexec rmdir %D/%%DATADIR%%/emudx 2> /dev/null || true -@unexec rmdir %D/%%DATADIR%%/artwork 2> /dev/null || true +@dirrmtry %%DATADIR%%/roms +@dirrmtry %%DATADIR%%/emudx +@dirrmtry %%DATADIR%%/artwork @dirrm %%DATADIR%%/languages -@unexec rmdir %D/%%DATADIR%% 2> /dev/null || true +@dirrmtry %%DATADIR%% |