diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-19 10:33:04 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-19 10:33:04 +0000 |
commit | 8f104848825edd9048bdd06cf079f37d10fd78ac (patch) | |
tree | 75f56d781b09e7c68416dbb87feed6b290d7e3e5 /japanese/samba20/files/patch-ak | |
parent | Add catalog entry by using mkconfig. (diff) |
Preserve the ja-samba 2.0 port before updating japanese/samba to the
next major version, 2.2.x.
Notes
Notes:
svn path=/head/; revision=53326
Diffstat (limited to 'japanese/samba20/files/patch-ak')
-rw-r--r-- | japanese/samba20/files/patch-ak | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/japanese/samba20/files/patch-ak b/japanese/samba20/files/patch-ak new file mode 100644 index 000000000000..86fdfde18f55 --- /dev/null +++ b/japanese/samba20/files/patch-ak @@ -0,0 +1,20 @@ +--- script/installswat.sh.orig Sat Oct 27 16:35:54 2001 ++++ script/installswat.sh Mon Nov 26 12:08:58 2001 +@@ -16,7 +16,7 @@ + langdir=$SWATDIR/$ln + for d in $SWATDIR $langdir $langdir/help $langdir/images $langdir/include; do + if [ ! -d $d ]; then +- mkdir $d ++ mkdir -p $d + if [ ! -d $d ]; then + echo Failed to make directory $d, does $USER have privileges? + exit 1 +@@ -84,7 +84,7 @@ + + for d in $BOOKDIR $BOOKDIR/$ln $BOOKDIR/$ln/figs $BOOKDIR/$ln/gifs; do + if [ ! -d $d ]; then +- mkdir $d ++ mkdir -p $d + if [ ! -d $d ]; then + echo Failed to make directory $d, does $USER have privileges? + exit 1 |