diff options
author | trevor <trevor@FreeBSD.org> | 2005-03-15 13:25:17 +0800 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2005-03-15 13:25:17 +0800 |
commit | 9c03018327ade6b3b6c0cdc44f771ecca5087b0d (patch) | |
tree | 1233782d25e9faf3ca5e58097f1bf17bc7143f3d /emulators | |
parent | 700a1da4d6a2ce21cfa1ea9ffec7df51f9291a37 (diff) | |
download | freebsd-ports-gnome-9c03018327ade6b3b6c0cdc44f771ecca5087b0d.tar.gz freebsd-ports-gnome-9c03018327ade6b3b6c0cdc44f771ecca5087b0d.tar.zst freebsd-ports-gnome-9c03018327ade6b3b6c0cdc44f771ecca5087b0d.zip |
Don't error out when the user defines USE_LINUX (See PR 69997 and
bsd.port.mk 1.505).
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/linux_base-8/Makefile | 4 | ||||
-rw-r--r-- | emulators/linux_base-rh-9/Makefile | 4 | ||||
-rw-r--r-- | emulators/linux_base-suse-9.1/Makefile | 4 |
3 files changed, 3 insertions, 9 deletions
diff --git a/emulators/linux_base-8/Makefile b/emulators/linux_base-8/Makefile index 3e5c3006baa5..7dd465eb476f 100644 --- a/emulators/linux_base-8/Makefile +++ b/emulators/linux_base-8/Makefile @@ -70,9 +70,7 @@ MD5_FILE= ${MASTERDIR}/distinfo.${ARCH} # Let's avoid hardcoding 'en' as the language. LANG= en -.ifdef USE_LINUX -.error You have `USE_LINUX' variable defined either in environment or in make(1) arguments. Please undefine and try again. -.endif +.undef USE_LINUX .include <bsd.port.pre.mk> diff --git a/emulators/linux_base-rh-9/Makefile b/emulators/linux_base-rh-9/Makefile index 67e9891352ba..897e6cb83eb8 100644 --- a/emulators/linux_base-rh-9/Makefile +++ b/emulators/linux_base-rh-9/Makefile @@ -68,9 +68,7 @@ PLIST= ${WRKDIR}/pkg-plist # Red Hat Linux 9 is only available in English. LANG= en -.ifdef USE_LINUX -.error You have `USE_LINUX' variable defined either in environment or in make(1) arguments. Please undefine and try again. -.endif +.undef USE_LINUX .include <bsd.port.pre.mk> diff --git a/emulators/linux_base-suse-9.1/Makefile b/emulators/linux_base-suse-9.1/Makefile index ec8f1b05fda4..a6ae7f8a1742 100644 --- a/emulators/linux_base-suse-9.1/Makefile +++ b/emulators/linux_base-suse-9.1/Makefile @@ -58,9 +58,7 @@ NO_FILTER_SHLIBS= yes NO_MTREE= yes PLIST= ${WRKDIR}/pkg-plist -.ifdef USE_LINUX -.error You have `USE_LINUX' variable defined either in environment or in make(1) arguments. Please undefine and try again. -.endif +.undef USE_LINUX .include <bsd.port.pre.mk> DBPATH= /var/lib/rpm |