summaryrefslogtreecommitdiff
path: root/deps/gyp/test/generator-output/actions/subdir1/make-prog1.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/generator-output/actions/subdir1/make-prog1.py')
-rwxr-xr-xdeps/gyp/test/generator-output/actions/subdir1/make-prog1.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/deps/gyp/test/generator-output/actions/subdir1/make-prog1.py b/deps/gyp/test/generator-output/actions/subdir1/make-prog1.py
deleted file mode 100755
index 7ea1d8a2d4..0000000000
--- a/deps/gyp/test/generator-output/actions/subdir1/make-prog1.py
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env python
-
-# Copyright (c) 2009 Google Inc. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import sys
-
-contents = r"""
-#include <stdio.h>
-
-void prog1(void)
-{
- printf("Hello from make-prog1.py\n");
-}
-"""
-
-open(sys.argv[1], 'w').write(contents)
-
-sys.exit(0)