blob: c5e520b7837bf5e30002564298ab564a3987d135 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-ab,v 1.9 2009/03/30 09:31:00 wiz Exp $
--- src/Makefile.in.orig 2009-03-18 16:51:06.000000000 +0000
+++ src/Makefile.in
@@ -1884,7 +1884,7 @@ uninstall-am: uninstall-binPROGRAMS unin
game_config.o: revision.hpp
.PRECIOUS: revision.hpp
revision.hpp: FORCE
- if [ "$(REVISION)" == "" ] || [ "$(REVISION)" == "exported" ]; then echo '' >/tmp/westemp$$$$; \
+ if [ "$(REVISION)" = "" ] || [ "$(REVISION)" = "exported" ]; then echo '' >/tmp/westemp$$$$; \
else echo '#define REVISION "$(REVISION)"' >/tmp/westemp$$$$; fi;\
if cmp -s revision.hpp /tmp/westemp$$$$ 2>/dev/null; then :; else cp /tmp/westemp$$$$ revision.hpp; fi; \
if [ -e /tmp/westemp$$$$ ]; then rm /tmp/westemp$$$$; fi
|