diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-03-29 07:50:16 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-03-29 07:50:16 +0800 |
commit | ccb33f5e508ef35aa5b237275bb3e1ec8f9e34d0 (patch) | |
tree | 627ada3a31421700c9a32b6ff7f5808406481f5e /x11 | |
parent | af4948d5f35f95c50f1ad87b11257c4e0f8281da (diff) | |
download | marcuscom-ports-ccb33f5e508ef35aa5b237275bb3e1ec8f9e34d0.tar marcuscom-ports-ccb33f5e508ef35aa5b237275bb3e1ec8f9e34d0.tar.gz marcuscom-ports-ccb33f5e508ef35aa5b237275bb3e1ec8f9e34d0.tar.bz2 marcuscom-ports-ccb33f5e508ef35aa5b237275bb3e1ec8f9e34d0.tar.lz marcuscom-ports-ccb33f5e508ef35aa5b237275bb3e1ec8f9e34d0.tar.xz marcuscom-ports-ccb33f5e508ef35aa5b237275bb3e1ec8f9e34d0.tar.zst marcuscom-ports-ccb33f5e508ef35aa5b237275bb3e1ec8f9e34d0.zip |
Do not exit if PACKAGE_BUILDING is defined as this will cause pkg-install
not to run when pkg_add'd from sysinstall.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@2200 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11')
-rw-r--r-- | x11/gnome2-lite/pkg-install | 4 | ||||
-rw-r--r-- | x11/gnome2/pkg-install | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/x11/gnome2-lite/pkg-install b/x11/gnome2-lite/pkg-install index 892e5ee4c..2480ec609 100644 --- a/x11/gnome2-lite/pkg-install +++ b/x11/gnome2-lite/pkg-install @@ -1,9 +1,5 @@ #!/bin/sh -if [ -n "${PACKAGE_BUILDING}" ]; then - exit 0 -fi - PATH=/bin:/usr/bin:/sbin:/usr/sbin:${PATH} export PATH diff --git a/x11/gnome2/pkg-install b/x11/gnome2/pkg-install index 1324bb12a..870432d23 100644 --- a/x11/gnome2/pkg-install +++ b/x11/gnome2/pkg-install @@ -1,9 +1,5 @@ #!/bin/sh -if [ -n "${PACKAGE_BUILDING}" ]; then - exit 0 -fi - PATH=/bin:/usr/bin:/sbin:/usr/sbin:${PATH} export PATH |