summaryrefslogtreecommitdiff
path: root/ACE/include/makeinclude/platform_linux_common.GNU
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2019-01-17 09:39:18 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2019-01-17 09:39:18 +0100
commit76451eb994cf44aacb93b8f4925db5c5c0aed2c2 (patch)
tree97e08d0fe72398391f7c8f428df501d16b5a6915 /ACE/include/makeinclude/platform_linux_common.GNU
parentfec796bd6ad79e40a42b9e95021edeecd883739d (diff)
downloadATCD-76451eb994cf44aacb93b8f4925db5c5c0aed2c2.tar.gz
When getconf fails don't set the value to unknown, that gives a strange error to our users, issue #792
* ACE/include/makeinclude/platform_linux_common.GNU:
Diffstat (limited to 'ACE/include/makeinclude/platform_linux_common.GNU')
-rw-r--r--ACE/include/makeinclude/platform_linux_common.GNU4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/include/makeinclude/platform_linux_common.GNU b/ACE/include/makeinclude/platform_linux_common.GNU
index 14870b457b7..fb0972d2747 100644
--- a/ACE/include/makeinclude/platform_linux_common.GNU
+++ b/ACE/include/makeinclude/platform_linux_common.GNU
@@ -107,11 +107,11 @@ ifeq ($(ssl),1)
PLATFORM_SSL_CPPFLAGS += -I/usr/kerberos/include
endif # ssl
-PLATFORM_LARGEFILE_CFLAGS := $(shell getconf LFS_CFLAGS 2> /dev/null || echo Unknown)
+PLATFORM_LARGEFILE_CFLAGS := $(shell getconf LFS_CFLAGS 2> /dev/null)
ifdef PLATFORM_LARGEFILE_CFLAGS
# Large file support
CPPFLAGS += $(PLATFORM_LARGEFILE_CFLAGS)
-endif #largefile
+endif
SYSARCH := $(shell uname -m)