diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-05-02 22:46:07 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-05-02 22:46:07 -0400 |
commit | efe6325910bb0ca83e59f32b6cb937882434bf74 (patch) | |
tree | 8bfe52db3556e5ef4f4dc2d8f242abb54a8328fb /src/devtools | |
parent | 3d85c8669c758af039f9b1ce8c8477312e203527 (diff) |
fix libremakepkg
Diffstat (limited to 'src/devtools')
-rw-r--r-- | src/devtools/lib/makechrootpkg.sh.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devtools/lib/makechrootpkg.sh.patch b/src/devtools/lib/makechrootpkg.sh.patch index 618d7e9..6016ba4 100644 --- a/src/devtools/lib/makechrootpkg.sh.patch +++ b/src/devtools/lib/makechrootpkg.sh.patch @@ -166,7 +166,7 @@ chown "$src_owner" "$pkgfile" mv "$pkgfile" "$PKGDEST" + if [[ $PKGDEST != . ]]; then -+ ln -s "$PKGDEST/${pkgfile##*/}" . ++ ln -sf "$PKGDEST/${pkgfile##*/}" . + fi done +} |