diff options
author | mat <mat@FreeBSD.org> | 2018-04-26 06:00:04 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2018-04-26 06:00:04 +0800 |
commit | 75aca9006f19a6bb2f4e9fbf4e7ad3ddb047805f (patch) | |
tree | 877f83651fc08a9e89b2786d39a927b386e1f64a /comms | |
parent | 5b493af2108b897c9e5b072010e8d5abc6c43925 (diff) | |
download | freebsd-ports-gnome-75aca9006f19a6bb2f4e9fbf4e7ad3ddb047805f.tar.gz freebsd-ports-gnome-75aca9006f19a6bb2f4e9fbf4e7ad3ddb047805f.tar.zst freebsd-ports-gnome-75aca9006f19a6bb2f4e9fbf4e7ad3ddb047805f.zip |
Only sleep in ports if BATCH/PACKAGE_BUILDING are not defined.
Sponsored by: Absolight
Diffstat (limited to 'comms')
-rw-r--r-- | comms/qpage/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/comms/qpage/Makefile b/comms/qpage/Makefile index 7442d0c016b6..cc7497149ad4 100644 --- a/comms/qpage/Makefile +++ b/comms/qpage/Makefile @@ -50,7 +50,9 @@ pre-patch: @${ECHO_MSG} "" @${ECHO_MSG} "Press ^C now to stop the build and set make options." @${ECHO_MSG} "You may find it necessary to 'make clean' before restarting the build." +. if !(defined(PACKAGE_BUILDING) || defined(BATCH)) @sleep 2 +. endif .endif post-patch: |