Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-alt r1708 - trunk/baselayout-prefix/src
Date: Sun, 01 May 2011 19:16:36
Message-Id: 20110501191627.29DB020054@flycatcher.gentoo.org
1 Author: grobian
2 Date: 2011-05-01 19:16:25 +0000 (Sun, 01 May 2011)
3 New Revision: 1708
4
5 Modified:
6 trunk/baselayout-prefix/src/Makefile
7 Log:
8 buildsys: make OS conditional code functional
9
10 Modified: trunk/baselayout-prefix/src/Makefile
11 ===================================================================
12 --- trunk/baselayout-prefix/src/Makefile 2011-04-28 19:56:18 UTC (rev 1707)
13 +++ trunk/baselayout-prefix/src/Makefile 2011-05-01 19:16:25 UTC (rev 1708)
14 @@ -14,7 +14,7 @@
15
16 TARGET = $(BIN_TARGETS) $(SBIN_TARGETS)
17
18 -OS = Linux
19 +OS = $(shell uname)
20 ifeq ($(OS),Linux)
21 LDFLAGS_RS = -ldl
22 endif