]> git.llucax.com Git - software/posixx.git/commitdiff
Fix 80 column limit violation
authorLeandro Lucarella <llucarella@integratech.com.ar>
Wed, 17 Sep 2008 18:51:48 +0000 (15:51 -0300)
committerLeandro Lucarella <llucarella@integratech.com.ar>
Wed, 17 Sep 2008 18:51:48 +0000 (15:51 -0300)
test/Makefile

index 3f644f757dac95a9e88e272bb1e3203c4d77fff7..ea44f746309ead5fa5491974bfdf3fb0f66d3829 100644 (file)
@@ -69,7 +69,8 @@ all: test_suite
        @mkdir -p $(dir $@)
        @set -e; rm -f $@; \
                $(CC) -MM -MG -MP $(CPPFLAGS) $(ALL_CFLAGS) $< -MF $@.$$$$; \
-               sed 's,\($(notdir $*)\)\.o[ :]*,$(dir $<)\1.o $@ : ,g' < $@.$$$$ > $@; \
+               sed 's,\($(notdir $*)\)\.o[ :]*,$(dir $<)\1.o $@ : ,g' \
+                               < $@.$$$$ > $@; \
                rm -f $@.$$$$
 
 ifneq ($(MAKECMDGOALS),clean)