diff options
author | Tilman Sauerbeck <tilman@crux.nu> | 2007-04-14 14:24:30 +0200 |
---|---|---|
committer | Tilman Sauerbeck <tilman@crux.nu> | 2007-04-14 14:24:30 +0200 |
commit | adf431544e943e89bbb687bc2c591cde4d87200f (patch) | |
tree | 9662d84d63a88665a727eb51401589d28ec36641 /gzip | |
parent | d4045da4ccd6483215d195ad88bf7e52c80d1077 (diff) | |
download | core-adf431544e943e89bbb687bc2c591cde4d87200f.tar.gz core-adf431544e943e89bbb687bc2c591cde4d87200f.tar.xz |
gzip: don't try to hard link from /usr to /
Diffstat (limited to 'gzip')
-rw-r--r-- | gzip/.footprint | 2 | ||||
-rw-r--r-- | gzip/Pkgfile | 7 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gzip/.footprint b/gzip/.footprint index 39f58b6f..388d9f17 100644 --- a/gzip/.footprint +++ b/gzip/.footprint @@ -5,7 +5,7 @@ drwxr-xr-x root/root bin/ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/gzexe --rwxr-xr-x root/root usr/bin/uncompress +lrwxrwxrwx root/root usr/bin/uncompress -> /bin/gunzip -rwxr-xr-x root/root usr/bin/zcmp -rwxr-xr-x root/root usr/bin/zdiff -rwxr-xr-x root/root usr/bin/zegrep diff --git a/gzip/Pkgfile b/gzip/Pkgfile index 6b5023fd..f5f74fa6 100644 --- a/gzip/Pkgfile +++ b/gzip/Pkgfile @@ -4,7 +4,7 @@ name=gzip version=1.3.12 -release=1 +release=2 source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz) build() { @@ -21,5 +21,10 @@ build() { ln -sf gzip.1.gz $PKG/usr/man/man1/zcat.1.gz ln -sf zdiff.1.gz $PKG/usr/man/man1/zcmp.1.gz + # make uncompress a symlink to gunzip, since it will not work + # if / and /usr are on different file systems. + rm $PKG/usr/bin/uncompress + ln -s /bin/gunzip $PKG/usr/bin/uncompress + rm -r $PKG/usr/share } |