From 0eddf14b307e905663b95296aa695a10d3fb90f7 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 24 Apr 2006 09:36:09 +0000 Subject: r15191: Avoid uint_t as it's not standard. (This used to be commit 7af59357b94e3819415b3a9257be0ced745ce130) --- source4/main.mk | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'source4/main.mk') diff --git a/source4/main.mk b/source4/main.mk index 26d228fa6f..96fae004a4 100644 --- a/source4/main.mk +++ b/source4/main.mk @@ -224,8 +224,9 @@ include/config.h: @echo "You need to rerun ./autogen.sh and ./configure" @/bin/false -clean_pch: - -rm -f include/includes.h.gch +clean_pch: + @echo "Removing precompiled headers" + @-rm -f include/includes.h.gch pch: clean_pch include/includes.h.gch -- cgit