diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-01-01 21:57:28 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-01-01 21:57:28 +0000 |
commit | 4643b181bdf1d9121f9d6d4214e991e7b9f52d30 (patch) | |
tree | c5615b9d242314847c555255c4e57f195c3444ad /ldso/util | |
parent | 01d1ae3769f7fb1fa66dbc0789a61b05fee3452f (diff) |
Change all 'cd <foo>; bar' constructs to 'cd <foo> && bar' for
proper error checking
-Erik
Diffstat (limited to 'ldso/util')
-rw-r--r-- | ldso/util/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/util/Makefile b/ldso/util/Makefile index 6e3d5530b..99d0bf04b 100644 --- a/ldso/util/Makefile +++ b/ldso/util/Makefile @@ -50,7 +50,7 @@ endif ldd: ldd.c $(TARGET_CC) $(TARGET_CFLAGS) -DUCLIBC_TARGET_PREFIX=\"$(TARGET_PREFIX)\" \ -DUCLIBC_DEVEL_PREFIX=\"$(DEVEL_PREFIX)\" \ - -DUCLIBC_BUILD_DIR=\"$(shell cd $(TOPDIR); pwd)\" \ + -DUCLIBC_BUILD_DIR=\"$(shell cd $(TOPDIR) && pwd)\" \ -DUCLIBC_LDSO=\"$(UCLIBC_LDSO)\" \ -static ldd.c -o $@ $(STRIPTOOL) -x -R .note -R .comment $@ |