Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7642337
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T09:09:51+00:00 2026-05-31T09:09:51+00:00

I have a make file and I am trying to use it to copy

  • 0

I have a make file and I am trying to use it to copy files to a directory. The path of the directory is stored in an environment variable. The problem is when I run make the C:\Data from the environment variable is interpreted as C:Data. How do I stop this being intrepreted as an escape character?

copyData : buildData
cp Release/*.tbl $(DATA)/index

results in:

cp Release/*.tbl C:\Data/index
cp: `C:Data/index': specified destination directory does not exist
Try `cp --help' for more information.
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T09:09:53+00:00Added an answer on May 31, 2026 at 9:09 am

    Actually, using forward slashes is the best, and correct, solution. Windows utilities always support forward slashes so it works, and trying to remember to always quote pathnames to avoid issues with backslashes is a major hassle.

    In this case the first thing to note is that the problem is not a problem with make. make is passing the right content to the shell; it’s the shell which is parsing the backslash as an escape character.

    As I said above the right answer is to use forward slashes BUT if you want to allow people to use backslashes you’ll have to go through your makefile and quote all arguments where a backslash might appear. For example:

    copyData : buildData
            cp Release/*.tbl '$(DATA)'/index
    

    will fix your immediate problem.

    If you have just a couple of these variables you could also do something like:

    QDATA = '$(DATA)'
    

    then remember to use $(QDATA) where you wanted the quoted value:

    copyData : buildData
            cp Release/*.tbl $(QDATA)/index
    

    PS. Use forward slashes!! 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i make one class file for jar. and this class have use wurfl. and
I have bat-file, that make some operations. How to run this file from Delphi
I am trying to use Robot in Java to make an image file of
we have some C++ code that we need to create a make file in.
friends. I have a 'make'-like style file needed to be parsed. The grammar is
I have to make a peer to peer file sharing app on android platform
I have a make rule which generates a dependencies file for a list of
I have to make xPath dynamical, based on my request attributes in XSL file
I have an excel file that I need to make some changes. I need
In my .htaccess file I have defined the following rule to make my register

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.